반응형
asp.net MVC4 프레임 워크에서 파일을 업로드 받기 위한 코드입니다.
먼저 HTML 쪽에 아래와 같이 파입 업로드 폼을 만들어줍니다.
<form action="Upload" method="post" enctype="multipart/form-data">
<input type="file" name="file" id="file">
<input type="submit">
</form>
그 다음 컨트롤러에서 웹페이지에서 POST된 파일을 받아 저장합니다.
[HttpPost]
public ActionResult Upload(HttpPostedFileBase file)
{
if (ModelState.IsValid)
{
if (file.ContentLength > 0)
{
var fileName = Path.GetFileName(file.FileName);
var path = Path.Combine(Server.MapPath("~/App_Data"), fileName);
file.SaveAs(path);
}
}
return RedirectToAction("Index");
}
여러 파일을 전송 받을 때는 아래와 같이 변경 해줍니다.
<form action="Upload" method="post" enctype="multipart/form-data">
<input type="file" name="files" id="file1">
<input type="file" name="files" id="file2">
<input type="submit">
</form>
[HttpPost]
public ActionResult Upload(IEnumerable<httppostedfilebase> files)
{
if (ModelState.IsValid)
{
foreach(var file in files)
{
if (file.ContentLength > 0)
{
var fileName = Path.GetFileName(file.FileName);
var path = Path.Combine(Server.MapPath("~/App_Data"), fileName);
file.SaveAs(path);
}
}
}
return RedirectToAction("Index");
}
반응형
'ASP.NET > .NET Framework' 카테고리의 다른 글
asp.net smtp 이용하여 메일보내기 구현하기 (0) | 2020.05.29 |
---|---|
asp.net mvc 다중 이미지 업로드 (0) | 2020.05.13 |
Upload Files In ASP.NET MVC 5 (0) | 2020.05.12 |
ASP.NET MVC JsonResult Date Format / asp.net json date 값 받기 (0) | 2020.05.12 |
ASP.NET 한글 깨짐 현상 인코딩 해결방법 (0) | 2020.04.28 |