How to get absolute path in ASP.Net Core alternative way for Server.MapPath(如何在 ASP.Net Core 替代方式中获取 Server.MapPath 的绝对路径)
问题描述
如何在 Server.MapPath
How to get absolute path in ASP net core alternative way for Server.MapPath
我尝试使用 IHostingEnvironment
,但没有给出正确的结果.
I have tried to use IHostingEnvironment
but it doesn't give proper result.
IHostingEnvironment env = new HostingEnvironment();
var str1 = env.ContentRootPath; // Null
var str2 = env.WebRootPath; // Null, both doesn't give any result
我在 wwwroot 文件夹中有一个图像文件 (Sample.PNG),我需要获取此绝对路径.
I have one image file (Sample.PNG) in wwwroot folder I need to get this absolute path.
推荐答案
从 .Net Core v3.0 开始,应该是 IWebHostEnvironment
访问已移至 Web 特定环境接口的 WebRootPath
.
As of .Net Core v3.0, it should be IWebHostEnvironment
to access the WebRootPath
which has been moved to the web specific environment interface.
将 IWebHostEnvironment
作为依赖注入到依赖类中.该框架将为您填充它
Inject IWebHostEnvironment
as a dependency into the dependent class. The framework will populate it for you
public class HomeController : Controller {
private IWebHostEnvironment _hostEnvironment;
public HomeController(IWebHostEnvironment environment) {
_hostEnvironment = environment;
}
[HttpGet]
public IActionResult Get() {
string path = Path.Combine(_hostEnvironment.WebRootPath, "Sample.PNG");
return View();
}
}
您可以更进一步,创建自己的路径提供者服务抽象和实现.
You could go one step further and create your own path provider service abstraction and implementation.
public interface IPathProvider {
string MapPath(string path);
}
public class PathProvider : IPathProvider {
private IWebHostEnvironment _hostEnvironment;
public PathProvider(IWebHostEnvironment environment) {
_hostEnvironment = environment;
}
public string MapPath(string path) {
string filePath = Path.Combine(_hostEnvironment.WebRootPath, path);
return filePath;
}
}
并将 IPathProvider
注入到依赖类中.
And inject IPathProvider
into dependent classes.
public class HomeController : Controller {
private IPathProvider pathProvider;
public HomeController(IPathProvider pathProvider) {
this.pathProvider = pathProvider;
}
[HttpGet]
public IActionResult Get() {
string path = pathProvider.MapPath("Sample.PNG");
return View();
}
}
确保向 DI 容器注册服务
Make sure to register the service with the DI container
services.AddSingleton<IPathProvider, PathProvider>();
这篇关于如何在 ASP.Net Core 替代方式中获取 Server.MapPath 的绝对路径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 ASP.Net Core 替代方式中获取 Server.MapPath 的绝对路径
基础教程推荐
- c# Math.Sqrt 实现 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01