このコード を使用してディスク上のファイルを保存しようとしています。
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およびApplicationBasePathwithWebRootPath.
IFormFileにはSaveAsAsync()はもうないようです。ファイルをディスクに保存するにはどうすればよいですか?
コアのリリース候補以降、いくつかの点が変更されました
public class ProfileController : Controller {
private IHostingEnvironment _hostingEnvironment;
public ProfileController(IHostingEnvironment environment) {
_hostingEnvironment = environment;
}
[HttpPost]
public async Task<IActionResult> Upload(IList<IFormFile> files) {
var uploads = Path.Combine(_hostingEnvironment.WebRootPath, "uploads");
foreach (var file in files) {
if (file.Length > 0) {
var filePath = Path.Combine(uploads, file.FileName);
using (var fileStream = new FileStream(filePath, FileMode.Create)) {
await file.CopyToAsync(fileStream);
}
}
}
return View();
}
}