Я пытаюсь использовать это Just Upload One Files, и в моем случае мне нужно загрузить несколько файлов
public ActionResult Create(HttpPostedFileBase file){
string filename = Path.GetFileName(file.FileName);
string contentType = file.ContentType;
string folder = Server.MapPath("~/Files");
using (Stream fs = file.InputStream)
{
using (BinaryReader br = new BinaryReader(fs))
{
byte[] bytes = br.ReadBytes((Int32)fs.Length);
file.SaveAs(Path.Combine(folder, filename));
}
}
}
This My form
@using (Html.BeginForm("Create","P_m",FormMethod.Post,new { @enctype = "multipart/form-data" }))
{
<input type="file" name="File" multiple />
}
Моя проблема Просто загрузите один файл, но Мне нужно загрузить несколько файлов ...