[JAVA]_File 파일 생성, 파일 삭제
디렉토리를 생성하고, 삭제해야 하는 경우가 있다. 생성 디렉토리를 만들때 하나만 만드는 것이 아니라, 연속된 파일의 경로를 만들어야 할 때가 있다. 파라미터로 기준이 되는 경로를 하나 받고, 그뒤에 나열되는 파라미터의 이름별 폴더가 생기게 되도록 구현하였다. //폴더 생성 함수 private static void makeDir(String uploadPath, String... paths) { if(!(new File(uploadPath).exists())){ logger.debug("noExistRootFile"); File rootDirPath = new File(uploadPath); if(!rootDirPath.exists()){ rootDirPath.mkdir(); } } if(new File(..
2022.06.23