Я пытаюсь сохранить файл на диске, используя этот кусок кода.
IHostingEnvironment _hostingEnvironment;
public ProfileController(IHostingEnvironment hostingEnvironment)
{
_hostingEnvironment = hostingEnvironment;
}
[HttpPost]
public async Task<IActionResult> Upload(IList<IFormFile> files)
{
foreach (var file in files)
{
var fileName = ContentDispositionHeaderValue
.Parse(file.ContentDisposition)
.FileName
.Trim('"');
var filePath = _hostingEnvironment.WebRootPath + "\\wwwroot\\" + fileName;
await file.SaveAsAsync(filePath);
}
return View();
}
Я смог заменить IApplicationEnvironment на IHostingEnvironment и ApplicationBasePath с помощью WebRootPath.
Похоже, что у IFormFile больше нет SaveAsAsync(). Как мне сохранить файл на диск?