Horje
get file path in .net core from wwwroot folder Code Example
get file path in .net core from wwwroot folder
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();
    }
}




Csharp

Related
regex for accepting a file name c# Code Example regex for accepting a file name c# Code Example
get all assemblies c# Code Example get all assemblies c# Code Example
c# switch case greater than Code Example c# switch case greater than Code Example
how to remove all whitespace from a string in c# Code Example how to remove all whitespace from a string in c# Code Example
how to pass optional guid parameters in c# Code Example how to pass optional guid parameters in c# Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10