我必須寫在C驅動器的perticuler路徑上的文件我使用下面的代碼它是上面的錯誤givin不支持給定路徑的格式。不支持給定路徑的格式。當傳遞路徑我們必須通過什麼樣的路徑
我的路徑值是d:\ EA \ 10 \代表\ Demo.txt
System.IO.File.WriteAllText(path, string.Empty);
StreamWriter file2 = new StreamWriter(path, true);
file2.WriteLine("Demo");
file2.Close();
if (System.IO.File.Exists(path))
System.IO.File.Copy(path, @"D:\Demo.htm", true);
我的路徑值是d:\ EA \ 10 \代表\ Demo.txt –
它不應該是'@ path'?我不認爲將你的路徑附加到符號@會做很多事情。 –
@ user2996030:你能運行你的代碼嗎? –