以下是我的导师和我的朋友在 Win 7 上给出的,它工作得很好。我已经尝试过我的工作笔记本电脑和我的个人台式机...不断发现以下错误
我不明白...我什至将目录的权限更改给每个人,只是为了好玩...它适用于他的复制粘贴,但不适用于我的。
“找不到路径 'c:\Users\Wookie\My Documents\' 的一部分。”
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