2012-09-19 110 views

回答

0

Environment.SpecialFolder枚舉有一個選擇的特殊路徑,你可以使用,例如,你可以使用類似下面讓用戶的應用程序數據路徑的路徑:

string appDataPath = 
    Path.Combine(
     Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), 
     "YourCompany\\YourApp"); 
0

我通常使用做到這一點:

Server.MapPath(Url.Content("[...]")); 

Reggards

0

你想獲得physicalPath?

然後嘗試:

string physicalPath = Server.MapPath("/bin");