asp.net Core webapi 中 获取应用程序所在目录的三种方式
在以前asp.net MVC项目中的时候,获取当前项目的根目录非常容易,我们使用
Server.MapPath("~/");
WebAPI的控制器中应该是因
1. string basePath1 = AppContext.BaseDirectory;
2.string basePath2 =Path.GetDirectoryName(typeof(Program).Assembly.Location);
在以前asp.net MVC项目中的时候,获取当前项目的根目录非常容易,我们使用
Server.MapPath("~/");
WebAPI的控制器中应该是因
1. string basePath1 = AppContext.BaseDirectory;
2.string basePath2 =Path.GetDirectoryName(typeof(Program).Assembly.Location);