.net core与asp.net读取网站根目录文件的区别

asp.net 获取网站根目录某个文件

var path = HttpContext.Current.Server.MapPath("~/XmlConfig/myconfig.json");

 .net core获取网站根目录某个文件,不过IHostingEnvironment需要在构造函数中注入后才能使用。

 
    
IHostingEnvironment _hostingEnvironment;
var path = _hostingEnvironment.ContentRootPath + "//XmlConfig//myconfig.json";

 

转载于:https://www.cnblogs.com/KQNLL/p/10187887.html

你可能感兴趣的:(.net core与asp.net读取网站根目录文件的区别)