我将上传的文件保存在根目录下。我如何将此添加到我指定的路径(@ "C: UploadsFolder")?
public JsonResult Test(FileModel model)
{
string SavePath = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot/img", model.FormFile.FileName);
using (var stream = new FileStream(SavePath, FileMode.Create))
{
model.FormFile.CopyTo(stream);
}
return Json("");
}
在FileModel.cs
public class FileModel
{
public string Files { get; set; }
public IFormFile FormFile { get; set; }
}
我想这应该可以。因此,文件将上传到C驱动器而不是wwroot。
string SavePath = Path.Combine(Directory.GetCurrentDirectory(), (@"C:", model.FormFile.FileName);