Logo

【转载】ASP.NET获取路径的方法

photo

2022年05月17日

HttpContext.Current.Request.PhysicalPath;    // 获得当前页面的完整物理路径.比如

F:\XFU.NSQS\project\website\Default.aspx
HttpContext.Current.Request.PhysicalApplicationPath; // 获得当前程序运行的物理路径比

如F:\XFU.NSQS\project\website\
HttpContext.Current.Server.MapPath(@”\”); 这个就是在页面中的MapPath了.一样用法

HttpRuntime.AppDomainAppPath //这个是新发现的,很好用.

还有一个是用来处理在asp.net中调用dll文件,而DLL文件如果想知道当前的web站点的工作目录可

以用
System.AppDomain.CurrentDomain.BaseDirectory

网站在服务器磁盘上的物理路径: HttpRuntime.AppDomainAppPath
虚拟程序路径: HttpRuntime.AppDomainAppVirtualPath

HttpContext.Current.Request.ApplicationPath虚拟应用程序根路径
HttpContext.Current.Server.MapPath(“.”)当前的绝对路径
HttpContext.Current.Server.MapPath(HttpContext.Current.Request.ApplicationPath)系统的

根目录

        sb.Append(string.Format(“当前请求的虚拟路径: {0}”,Server.HtmlEncode

(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”)));

 

转自:http://www.cnblogs.com/zhyt1985/archive/2009/10/29/1592245.html

 

橙子主题打折出售

其实我不卖,主要是这里是放广告的,所以就放了一个
毕竟主题都没做完,卖了也是坑.

购买它
所有附件
该文章没有附件.
本文为原创文章,请注意保留出处!

热门文章

Navicat Premium 12.0.22 安装与破解 一、安装  NavicatPremium12.0.22的下载链接:https://pan.ba...NavicatPremium12.0.22安装与破解 作者:Pastore Antonio
1515 浏览量
C# JArray与JObject 的使用 STEP1、usingNewtonsoft.Json.Linq;STEP2、如何获取json里的...C#JArray与JObject的使用 作者:Pastore Antonio
1465 浏览量
解决mysql的配置ONLY_FULL_GROUP_BY引起的错误 由于自己的本地网站环境使用了mysql8.0的版本,在测试一个groupby的sql查...解决mysql的配置ONLY_FULL_GROUP_BY引起的错误 作者:Pastore Antonio
1448 浏览量
Windows server 2016 英文服务器安装中文语言包教程 1、下载windowsserver2016语言包下载地址:https://pan.baidu....Windowsserver2016英文服务器安装中文语言包教程 作者:Pastore Antonio
1407 浏览量
assembly(全局程序集缓存)中dll的导入和导出 本文主要讲一下关于assembly中的dll是怎么导入和导出的。浏览量:1,468 作者:Pastore Antonio
1403 浏览量