ASP.NET獲取路徑的方法

HttpContext.Current.Request.PhysicalPath;    // 得到當前頁面的完整物理路徑.好比web

F:\XFU.NSQS\project\website\Default.aspx
HttpContext.Current.Request.PhysicalApplicationPath; // 得到當前程序運行的物理路徑比服務器

如F:\XFU.NSQS\project\website\
HttpContext.Current.Server.MapPath(@"\"); 這個就是在頁面中的MapPath了.同樣用法asp.net

HttpRuntime.AppDomainAppPath //這個是新發現的,很好用.ide

還有一個是用來處理在asp.net中調用dll文件,而DLL文件若是想知道當前的web站點的工做目錄可網站

以用
System.AppDomain.CurrentDomain.BaseDirectory.net

網站在服務器磁盤上的物理路徑: HttpRuntime.AppDomainAppPath
虛擬程序路徑: HttpRuntime.AppDomainAppVirtualPathcode

HttpContext.Current.Request.ApplicationPath虛擬應用程序根路徑 
HttpContext.Current.Server.MapPath(".")當前的絕對路徑 
HttpContext.Current.Server.MapPath(HttpContext.Current.Request.ApplicationPath)系統的orm

根目錄string

        sb.Append(string.Format("當前請求的虛擬路徑: {0}",Server.HtmlEncodeit

(Request.CurrentExecutionFilePath)));
        sb.Append(string.Format("獲取當前應用程序的根目錄路徑: {0}",

Server.HtmlEncode(Request.ApplicationPath)));
        sb.Append(string.Format("當前請求的虛擬路徑: {0}",Server.HtmlEncode

(Request.FilePath)));
        sb.Append(string.Format("當前請求的虛擬路徑: {0}",Server.HtmlEncode

(Request.Path)));
        sb.Append(string.Format("獲取當前正在執行的應用程序的根目錄的物理文件系統路徑:

{0}", Server.HtmlEncode(Request.PhysicalApplicationPath)));
        sb.Append(string.Format("獲取與請求的 URL 相對應的物理文件系統路徑: {0}",

Server.HtmlEncode(Request.PhysicalApplicationPath)));

當前請求的虛擬路徑: /aDirectory/Sample/responseHtml.aspx
獲取當前應用程序的根目錄路徑: /aDirectory
當前請求的虛擬路徑: /aDirectory/Sample/responseHtml.aspx
當前請求的虛擬路徑: /aDirectory/Sample/responseHtml.aspx
獲取當前正在執行的應用程序的根目錄的物理文件系統路徑: E:\Visual Studio 2005\
獲取與請求的 URL 相對應的物理文件系統路徑: E:\Visual Studio 2005\\aDirectory\

 

             sb.Append(string.Format("獲取項目完整的絕對路徑: {0}",

System.AppDomain.CurrentDomain.BaseDirectory.ToString()));
            //僅在嘗試向此域中加載程序集以後,此屬性纔可用
            sb.Append(string.Format("獲取項目,它由程序集衝突解決程序用來探測動態建立的

程序集: {0}", System.AppDomain.CurrentDomain.DynamicDirectory));
            sb.Append(string.Format("獲取磁盤上指向應用程序目錄的物理路徑。: {0}",

System.Web.Hosting.HostingEnvironment.ApplicationPhysicalPath));
            sb.Append(string.Format("獲取應用程序的虛擬根路徑: {0}",

System.Web.Hosting.HostingEnvironment.ApplicationVirtualPath));
            sb.Append(string.Format("獲取站點的名稱。: {0}",

System.Web.Hosting.HostingEnvironment.SiteName));
            //sb.Append(string.Format("獲取此應用程序的虛擬路徑提供程序。: {0}",

System.Web.Hosting.HostingEnvironment.VirtualPathProvider));
            sb.Append(string.Format("返回與 Web 服務器上的指定虛擬路徑相對應的物理文件

路徑。: {0}", Server.MapPath("sss.aspx")));

相關文章
相關標籤/搜索