請參閱此線程:
path of desktop for current user爲什麼Environment.SpecialFolder.Desktop是空
此代碼(平均路徑)在我的本地機器是好的,但出版的回報沒有...
後,我的意思是Environment.GetFolderPath(Environment.SpecialFolder.Desktop)
發佈後空...
string path = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
Response.Write(path);
Response.Write("<br />");
Response.Write(Server.MapPath("/") + "myfile.htm");
Response.Write("<br />");
//string[] directory_list = Directory.GetDirectories(path);
//foreach (string directory in directory_list)
//{
// if (directory.Contains("blablabla"))
// {
// string sumfilePath = directory + @"\Sum.txt";
// Response.Write(sumfilePath);
// }
//}
發生了什麼事情,我該如何解決它?
什麼用戶是網站下運行的? –
我怎麼找到它? – MoonLight
我有我自己的服務器,並有完全訪問權限! – MoonLight