下面是我的教練和我的朋友Win 7的給它工作得很好。我已經試過我的工作筆記本電腦和我的個人桌面......不斷挖掘出以下錯誤StreamReader的問題找到文件
我不明白......我儘量更改權限的目錄給大家只是踢去......它適用於他的複製粘貼,但不是我的。
「找不到路徑的一部分 'C:\用戶\ Wookie \我的文檔\'。」
using System;
using System.IO;
class Program
{
static void Main()
{
// This line of code gets the path to the My Documents Folder
string environment = System.Environment.GetFolderPath
(System.Environment.SpecialFolder.Personal) + "\\";
Console.WriteLine("Enter a file name in My Documents: ");
string input = Console.ReadLine();
// concatenate the path to the file name
string path = environment + input;
// now we can use the full path to get the document
StreamReader myFile = new StreamReader(path);
int n = int.Parse(myFile.ReadLine());
Console.WriteLine("read {0}", n);
Console.ReadLine();
}//End Main()
}//End class Program
你說它可以在你的朋友Windows 7上正常工作,你試圖在哪個操作系統上運行它。 – 2012-07-29 22:40:31
添加一個'Console.Writeline(路徑)'並仔細檢查它是否存在。 – 2012-07-29 22:42:32
運行Win 7以及 – Dan 2012-07-29 22:43:04