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 的绝对路径
基础教程推荐
- 更新 Visual Studio 中的 DataSet 结构以匹配新的 SQL 数据库结构 2022-01-01
- C# 9 新特性——record的相关总结 2023-04-03
- 将数据集转换为列表 2022-01-01
- 如果条件可以为空 2022-01-01
- 重新排序 WPF TabControl 中的选项卡 2022-01-01
- 在 VB6 或经典 ASP 中使用 .NET 2022-01-01
- 从 C# 控制相机设备 2022-01-01
- 获取C#保存对话框的文件路径 2022-01-01
- Mono https webrequest 失败并显示“身份验证或解密失败" 2022-01-01
- SonarQube C# 分析失败“不是指针的有效行偏移" 2022-01-01
