Server.MapPath in ASP.NET Core
25 January 2023
public class HomeController : Controller
{
private readonly IWebHostEnvironment _webHostEnvironment;
public HomeController (IWebHostEnvironment webHostEnvironment)
{
_webHostEnvironment= webHostEnvironment;
}
public IActionResult Index()
{
string webRootPath = _webHostEnvironment.WebRootPath;
string contentRootPath = _webHostEnvironment.ContentRootPath;
return Content("webRootPath: " + webRootPath + ", contentRootPath: " + contentRootPath);
}
}