How to get absolute path in ASP net core alternative way for Server.MapPath
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
I have one image file (Sample.PNG) in wwwroot folder I need to get this absolute path.
The MapPath method maps the specified relative or virtual path to the corresponding physical directory on the server.
For example, Server. MapPath() allows a path of "files/file1. doc". It uses the current context to determine the path of the current page, for example, and then creates the relative path from there.
The ContentRootPath property will give you access to the absolute path to the application content files. You may also use the property, WebRootPath if you would like to access the web-servable root path (www folder by default) You may inject this dependency into your controller and access it as follows:
Unfortunately, ASP.NET doesn't have a function which would do opposite of Server.MapPath. But, task is not so difficult, we have to only remove root folder part and turn slashes to right side. Function getVirtualPath could look like this:
The relative path does not need to specify an existing file or folder for this method to return a value. However, you cannot specify a path outside of the Web application. The MapPath method potentially contains sensitive information about the hosting environment. The return value should not be displayed to users.
Web application developers who code in classic asp, asp .net, and asp .net MVC have always relied on server.mappath to resolve file paths. But this method is no longer available in asp .net core 5.0 MVC. The is to use IHostEnvironment
As of .Net Core v3.0, it should be IWebHostEnvironment
to access the WebRootPath
which has been moved to the web specific environment interface.
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; } }
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(); } }
Make sure to register the service with the DI container
services.AddSingleton<IPathProvider, PathProvider>();
Var 1:
string path = System.IO.Directory.GetCurrentDirectory();
Var 2:
string path = AppDomain.CurrentDomain.BaseDirectory.Substring(0, AppDomain.CurrentDomain.BaseDirectory.IndexOf("\\bin"));
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With