首页 > Web开发 > 详细

asp.net中获取网站根目录和物理路径的方法

时间:2020-01-17 23:23:20      阅读:52      评论:0      收藏:0      [点我收藏+]
 1         /// <summary>
 2         /// 取得网站的根目录的URL
 3         /// </summary>
 4         /// <returns></returns>
 5         public static string GetRootURI()
 6         {
 7             string AppPath = "";
 8             HttpContext HttpCurrent = HttpContext.Current;
 9             HttpRequest Req;
10             if (HttpCurrent != null)
11             {
12                 Req = HttpCurrent.Request;
13 
14                 string UrlAuthority = Req.Url.GetLeftPart(UriPartial.Authority);
15                 if (Req.ApplicationPath == null || Req.ApplicationPath == "/")
16                     //直接安装在   Web   站点   
17                     AppPath = UrlAuthority;
18                 else
19                     //安装在虚拟子目录下   
20                     AppPath = UrlAuthority + Req.ApplicationPath;
21             }
22             return AppPath;
23         }
24         /// <summary>
25         /// 取得网站的根目录的URL
26         /// </summary>
27         /// <param name="Req"></param>
28         /// <returns></returns>
29         public static string GetRootURI(HttpRequest Req)
30         {
31             string AppPath = "";
32             if (Req != null)
33             {
34                 string UrlAuthority = Req.Url.GetLeftPart(UriPartial.Authority);
35                 if (Req.ApplicationPath == null || Req.ApplicationPath == "/")
36                     //直接安装在   Web   站点   
37                     AppPath = UrlAuthority;
38                 else
39                     //安装在虚拟子目录下   
40                     AppPath = UrlAuthority + Req.ApplicationPath;
41             }
42             return AppPath;
43         }
44         /// <summary>
45         /// 取得网站根目录的物理路径
46         /// </summary>
47         /// <returns></returns>
48         public static string GetRootPath()
49         {
50             string AppPath = "";
51             HttpContext HttpCurrent = HttpContext.Current;
52             if (HttpCurrent != null)
53             {
54                 AppPath = HttpCurrent.Server.MapPath("~");
55             }
56             else
57             {
58                 AppPath = AppDomain.CurrentDomain.BaseDirectory;
59                 if (Regex.Match(AppPath, @"\\$", RegexOptions.Compiled).Success)
60                     AppPath = AppPath.Substring(0, AppPath.Length - 1);
61             }
62             return AppPath;
63         }

asp.net中获取网站根目录和物理路径的方法

原文:https://www.cnblogs.com/lgx5/p/12207451.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!