Upload multiple files using HttpFileCollectionBase issue with C# and MVC3

前端 未结 3 1371
轮回少年
轮回少年 2021-01-03 05:58

I created a controller which save files.

The below code is a part of that Controller:

if ( Request.Files.Count != 0 ) {
      HttpFileCollectionBase          


        
3条回答
  •  生来不讨喜
    2021-01-03 06:37

    Try like this:

    [HttpPost]
    public ActionResult Upload(IEnumerable files)
    {
        if (files != null && files.Count() > 0)
        {
            foreach (var uploadedFile in files)
            {
                if (uploadedFile.ContentType != "image/vnd.dwg") 
                {
                    return RedirectToAction("List");
                }
    
                var appData = Server.MapPath("~/app_data");
                var filename = Path.Combine(appData, Path.GetFileName(uploadedFile.FileName));
                uploadedFile.SaveAs(filename);                    
            }
        }
    
        return RedirectToAction("Success");
    }
    

    and modify the markup so that the file inputs are named files:

    
    
    ...// many inputs type file
    

提交回复
热议问题