1
A
回答
3
如果你有相對於你的web應用程序的路徑,你需要用MapPath方法(...)方法映射。
在頁類:
string fullyQualifiedFilename = Server.MapPath(relativeFilename);
或頁面類以外:
string fullyQualifiedFilename = HttpContext.Current.Server.MapPath(relativeFilename);
2
String virtualPath= "~\\images";
String RealPath=Server.MapPath(virtualPath); //it must be done at web application
System.IO.DirectoryInfo directory= new System.IO.DirectoryInfo(RealPath);
1
新DirectoryInfo的(Path.Combine(使用Server.Mappath(Request.ApplicationPath), 「圖像」) );
相關問題
- 1. 將DirectoryInfo與UNC路徑一起使用
- 2. DirectoryInfo,FileInfo和很長的路徑
- 3. .NET路徑組合
- 4. 長路徑在.NET
- 5. 結合一個DirectoryInfo和一個FileInfo路徑
- 6. DirectoryInfo Create()方法不需要傳遞目錄路徑?
- 7. 如何通過Directoryinfo獲取最新文件的完整路徑
- 8. 我可以使用DirectoryInfo解析DFS路徑嗎?
- 9. Server.MapPath()返回與DirectoryInfo一起使用時不存在的路徑
- 10. .net DirectoryInfo通配符排除模式
- 11. 路徑解析器在.NET
- 12. .NET路徑操作庫
- 13. ASP .NET無效路徑
- 14. .NET中的相對路徑
- 15. .NET更改臨時路徑
- 16. var di = new DirectoryInfo(路徑)拋出異常,直到我使用Windows資源管理器第一次打開路徑
- 17. DirectoryInfo在正確的路徑中拋出「參數異常:路徑不是合法形式」
- 18. 如何將DOS路徑轉換爲正常路徑(.net)
- 19. 使用DirectoryInfo時可以使用引號括起路徑的其他方法?
- 20. c#爲什麼當路徑是「C:」directoryInfo帶我到應用程序文件夾?
- 21. 奇怪的.NET路徑錯誤
- 22. .NET Windows Service的相對路徑問題..?
- 23. 獲取.NET Framework目錄路徑
- 24. 路徑出錯,YUI壓縮機.NET
- 25. ASP .NET C#得到在網絡路徑
- 26. 如何確定.NET中exlorer.exe的路徑?
- 27. .Net Web API與路徑不匹配
- 28. .NET中編譯的相對路徑
- 29. .NET LDAP路徑實用程序(C#)
- 30. 無法映射路徑'/'。 .net 4.0
是的,多數民衆贊成在文件夾被命名爲圖像,相對於我的應用程序它是../images 我會使用../images作爲relativeFileName嗎?非常感謝。 – user17510 2009-02-13 08:16:39