网站的根目录,一个是本地路径,一个是url路径,当需要文件操作时,我们需要本地路径,当需要与前端交互时,我们需要url路径。
在控制器中找本地路径:
string path = AppDomain.CurrentDomain.SetupInformation.ApplicationBase
path为C:\path
样式的本地路径;
如果需要显示为url路径:
string url = System.Web.HttpContext.Current.Request.Url.GetLeftPart(UriPartial.Authority)
url为http://localhost:8080
样式的路径。
文章评论