22
A
回答
25
獲取服務器上的ASP.NET應用程序的虛擬應用程序根路徑。
Request.ApplicationPath;
http://msdn.microsoft.com/en-us/library/system.web.httprequest.applicationpath.aspx
ResolveUrl("~/bin");
30
Server.MapPath("~/bin")
3
Server.MapPath("~/bin")
您還可以使用 Request.PhysicalApplicationPath
12
使用下面的代碼片段:
string strPath = HttpContext.Current.Server.MapPath("~/bin");
9
我需要這個在app_start
那裏還沒有HttpContext
,因此Request
和Server
不是選項。
這奏效了:
System.Web.HttpRuntime.BinDirectory
7
HttpContext.Current.Server.MapPath("~/bin")
Application.StartupPath + "/bin"
AppDomain.CurrentDomain.BaseDirectory + "/bin"
,還有更多的是在blog
相關問題
- 1. 如何獲取ASP.NET應用程序的完整虛擬路徑
- 2. 如何獲取ASP.NET應用程序路徑?
- 3. Dropwizard路徑:獲取應用程序中的所有路徑
- 4. 獲取應用程序的路徑
- 5. 如何在iOS中獲取目錄的路徑應用程序
- 6. 如何獲取MFC中的應用程序當前路徑(VC++)?
- 7. 如何獲取winforms應用程序中的文件路徑
- 8. 如何獲取winforms中的應用程序設置路徑?
- 9. 如何從android應用程序中的SD卡獲取路徑?
- 10. 獲取應用程序路徑
- 11. mono c#獲取應用程序路徑
- 12. 獲取應用程序路徑
- 13. wxWidgets:獲取應用程序路徑
- 14. 如何在spring中獲取應用程序路徑MVC
- 15. 如何在C中獲取應用程序路徑?
- 16. 如何在eclipse rcp應用程序中獲取圖像路徑
- 17. 如何獲取Web應用程序的war文件的路徑?
- 18. 如何在ASP.NET中獲取路徑名?
- 19. 如何獲取Web服務應用程序的「日誌」路徑?
- 20. 如何獲取應用程序目錄的路徑?
- 21. 如何獲取應用程序的AppData VirtualStore路徑?
- 22. 如何獲取應用程序的路徑(沒有app.exe)?
- 23. 如何獲取完整的目錄應用程序路徑?
- 24. 如何獲取網站/應用程序的物理路徑
- 25. 如何獲取ClickOnce應用程序的文件夾路徑
- 26. 如何獲取當前應用程序的路徑在WPF
- 27. asp.net應用程序的路徑設置
- 28. 運行ASP.NET應用程序的路徑
- 29. 如何使用javascript獲取應用程序路徑
- 30. ASP.net獲取路徑
相關信息[這裏]描述(https://stackoverflow.com/q/10951599/465053) 。 – RBT 2017-11-14 10:30:27
另一篇文章談論[在.Net中的Web應用程序中的服務器映射路徑](https://stackoverflow.com/q/275781/465053) – RBT 2017-11-14 10:35:41