这是我的代码..我正在尝试从存储在音乐文件夹中的 .txt 文件中读取数据。但是我遇到了一些错误,例如 System.NotSupportedException。不支持给定路径的格式。
请帮忙...........
string path = @"Music:\streamfile.txt";
using (StreamReader sr = File.OpenText(path))
{
String s = "";
while ((s = sr.ReadLine()) != null)
{
Console.WriteLine(s);
}
}
Console.ReadLine();