Извините за вопрос noob, но, похоже, я не могу получить Server.MapPath из Controller. Мне нужно вывести список файлов json из папки изображений на wwwroot. Они находятся на wwwroot/images. Как я могу получить надежный путь wwwroot?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNet.Mvc;
using www.Classes;
using System.Web;
namespace www.Controllers
{
[Route("api/[controller]")]
public class ProductsController : Controller
{
[HttpGet]
public IEnumerable<string> Get()
{
FolderScanner scanner = new FolderScanner(Server.MapPath("/"));
return scanner.scan();
}
}
}
Server.MapPath кажется недоступным из пространства имен System.Web.
Проект использует ASP.NET 5 и dotNET 4.6 Framework