获取站点根目录路径的一种思路

主要是根据web.config文件来获取,注意下面方法中web.config文件前面有斜杠,丢了就不行,那样可能会是虚拟目录子站的的配置文件
private static string _rootpath = null;
        public static string RootPath
        {
            get
            {
                if (_rootpath == null)
                {
                    _rootpath = System.Web.HttpContext.Current.Server.MapPath("/web.config");
                    int rootFlag = _rootpath.LastIndexOf("web.config");
                    _rootpath = _rootpath.Substring(0, rootFlag);
                }
                return _rootpath;
            }
        }

注意:线程中是无法访问HttpContext.Current的

public static string MapPath(string path)
    {
        if (System.Web.HttpContext.Current != null)
        {
            return System.Web.HttpContext.Current.Server.MapPath(path);
        }
        else //非web程序引用    
        {
            path= path.Replace("/", "");
            path= path.Replace("~", "");
            path= path.Replace("//", "-");//由于TrimStart(),方法所需char类型参数,所以把“//”替换成“-”,在TrimStart()中使用
            if (path.StartsWith("-"))
            {
                path= path.TrimStart('-');
            }
            return System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, path);
        }
    }


你可能感兴趣的:(根目录)