.net core 上传文件Demo

view:

<form method="post" enctype="multipart/form-data" action="@Url.Action("Upload")">
    <input type="file" id="file" name="file"/>
    
    <button>提交</button>
</form>

  

controlller:

public IActionResult Upload()
{
    var file = Request.Form.Files[0];
    if (file==null||file.Length==0)
    {
        return Content("文件为空");
    }
    var pathBase = Directory.GetCurrentDirectory();
    var uploadPath = Path.Combine(pathBase, "Upload");
    if (!Directory.Exists(uploadPath))
    {
        Directory.CreateDirectory(uploadPath);
    }
    string name = Guid.NewGuid().ToString() + file.FileName;
    string filePath = Path.Combine(uploadPath,name);
    using (var statem=System.IO.File.Create(filePath))
    {
        file.CopyTo(statem);
    }

    return Content("上传成功");
}

猜你喜欢

转载自www.cnblogs.com/zhouyg2017/p/11973357.html