ASP.NET에서 여러 파일 업로드 구현
저자:Eve Cole
업데이트 시간:2009-06-30 15:33:11
개인 부울 SaveFiles()
{
//파일 양식 요소 가져오기
HttpFileCollection 파일 = HttpContext.Current.Request.Files;
노력하다
{
for(int intCount= 0; intCount< files.Count; intCount++)
{
HttpPostedFile 게시파일 = 파일[intCount];
문자열 파일 이름, 파일 확장;
//파일명 가져오기
fileName = System.IO.Path.GetFileName(게시된File.FileName);
if (파일이름 != "")
{
//파일 이름 확장자를 가져옵니다.
fileExtension = System.IO.Path.GetExtension(파일 이름);
//다른 확장자 이름에 따라 다른 폴더에 파일을 저장할 수 있습니다.
//참고: 폴더의 익명 쓰기 권한을 수정해야 할 수도 있습니다.
게시된File.SaveAs(System.Web.HttpContext.Current.Request.MapPath("upFiles/") + fileName);
}
}
사실을 반환;
}
캐치(System.ExceptionEx)
{
거짓을 반환;
}
}