获取web路径的几种方式
1、string str1 = Request.ApplicationPath.ToString(); 返回路径为:\HolterClientWeb
2、HttpServerUtility.MapPath 方法 解释:返回对应于 Web 服务器上指定的虚拟路径的物理文件路径。
string path=Server.MapPath(Request.ApplicationPath + "/UpLoad/ReportFile");
调试后:
string str3= Server.MapPath("./");
C:\\Users\\Administrator\\Desktop\\HolterClientWeb\\FileHandle\\
string str4= Server.MapPath("../");
C:\\Users\\Administrator\\Desktop\\HolterClientWeb\\
string str5 = Server.MapPath("~/");
C:\\Users\\Administrator\\Desktop\\HolterClientWeb\\
附加:
./当前目录
/网站主目录
../上层目录
~/网站虚拟目录
3、 string exe = HttpContext.Current.Server.MapPath("pdf2swf.exe");
调试后:
4、string str6 = Server.MapPath(Request.ServerVariables["Path_Info"]);
5、string str7 = Request.ServerVariables["Path_Translated"];
其它参考地址:http://blog.csdn.net/ecdyf1989/article/details/5877648
http://www.cnblogs.com/leixiaoling/archive/2012/03/30/2425466.html
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。