파일 1000개씩 들어가도록 폴더 생성하는 로직
public static String getFolderPath(int num) {
String path = "";
while(num / 1000 > 1000){
path += getFolderPath(num/1000) + "/";
num = num/1000;
}
return StringUtils.replace(path + "/" + num / 1000, "//", "/");
}
재귀로 호출하여 1000개마다 하위폴더를 생성한다.
최근 댓글