码迷,mamicode.com
首页 > Web开发 > 详细

.net 获取网站根目录总结

时间:2016-04-14 12:04:59      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:

 一、获取网站根目录的方法有几种如:

 

技术分享
  Server.MapPath(Request.ServerVariables["PATH_INFO"])    //页面详细路
  Server.MapPath("/")   //根目录
  Server.MapPath("")        //当前代码文件所在的目录路径   
  Server.MapPath(".")   
  Server.MapPath("../") //当前代码所在路径的上级路径  
  Server.MapPath("..") 
    Page.Request.ApplicationPath 
技术分享

 

 

 

以上的代码在"http://localhost/EnglishClub/manage/WebForm1.aspx" 页面运行结果: 

 

技术分享
C:\Inetpub\wwwroot\EnglishClub\manage\WebForm1.aspx  
C:\Inetpub\wwwroot\  
C:\Inetpub\wwwroot\EnglishClub\manage  
C:\Inetpub\wwwroot\EnglishClub\manage  
C:\Inetpub\wwwroot\EnglishClub\  
C:\Inetpub\wwwroot\EnglishClub
/
技术分享

 

 

 

 

以上的方法可以在.aspx中访问,但是如果你在 .cs文件就不能用。

下面两个都可以在.cs文件中用:

 

HttpContext.Current.Server.MapPath();//所在文件夹路径
System.Web.HttpContext.Current.Request.PhysicalApplicationPat;//根路径

 

HttpContext.Current.Server.MapPath();这个获取的是文件的路径而不是根目录。

System.Web.HttpContext.Current.Request.PhysicalApplicationPath 这个才是获取的根目录,在写获取数据库路径是应该用这个,其他的都有问题。

System.Web.HttpContext.Current.Request.PhysicalApplicationPath和Server.MapPath("~/")效果是一样的。

Server.MapPath("~/");//无论代码所在的文件的、页面路径是什么,永远返回 C:\Inetpub\wwwroot\EnglishClub\(就是当前程序运行的所在根目录)

如果存储附件的路径到数据库的话,不应该把绝对路径存进去。应该只存储 文件名部分。

例如:/uploads/abc.txt

当需要浏览文件的时候,在在读取出来的路径:(即/uploads/abc.txt),前面+网站的路径:例如:http://abc.com+"/uploads/abc.txt"

 

 

二.线程中获取系统路径

    以上都是在web程序引用下获取路径,

在多线程里面使用HttpContext.Current,HttpContext.Current是得到null的. 

所以以上方法在线程中直接使用是不行的。

在线程中得到系统根路径可以用此方法:

 

技术分享
        public static string MapPath(string strPath) 
        { 
            if (HttpContext.Current != null) 
            { 
                return HttpContext.Current.Server.MapPath(strPath); 
            } 
            else //非web程序引用 
            { 
                strPath = strPath.Replace("/", "\\"); 
                if (strPath.StartsWith("\\")) 
                { 
                    //strPath = strPath.Substring(strPath.IndexOf(‘\\‘, 1)).TrimStart(‘\\‘); 
                    strPath = strPath.TrimStart(‘\\‘); 
                } 
                return System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, strPath); 
            } 
        } 
技术分享

 

 

.net 获取网站根目录总结

标签:

原文地址:http://www.cnblogs.com/1175429393wljblog/p/5390264.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!