Skip to content

Instantly share code, notes, and snippets.

@songzheng45
Last active June 7, 2017 02:45
Show Gist options
  • Save songzheng45/f7833a510924173ce968c946eeedfec5 to your computer and use it in GitHub Desktop.
Save songzheng45/f7833a510924173ce968c946eeedfec5 to your computer and use it in GitHub Desktop.
ASP.NET-MapPath-获取虚拟路径的实际磁盘路径
// ASP.NET WebForm,ASP.NET MVC
var sPath = Server.MapPath("/FilePath/");
// ASP.NET WebAPI
// 当 WebAPI 寄宿在非IIS下时(如自寄宿),无法访问HttpContext类,因此要调用这个方法来获取虚拟路径的实际磁盘路径
var sPath = System.Web.Hosting.HostingEnvironment.MapPath("/FilePath/");
@songzheng45
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment