[JSP] 파일업로드 웹루트 폴더 생성

2010. 4. 28. 16:17개발언어/Jsp

 cos 라이브러리 사용시 웹루트에 폴더가 없을경우 폴더 생성

 

 String tempSavePath=  request.getRealPath(File.separator) + "Files\\tempXls\\";  //경로
 
  String savePath = tempSavePath.replace('\\','/');  //구분자 리플레이스
 
  File targetDir = new File(savePath); 
 
  // 디렉토리가 없을 경우 생성
  if(!targetDir.exists()) {
   targetDir.mkdirs();
  }