[Spring][쇼핑몰 프로젝트][29] 상품 이미지 수정 - 7(배치 프로그램 적용 4)

https://kimvampa.tistory.com/241
This commit is contained in:
SeoJin Kim
2021-07-27 00:12:59 +09:00
parent 4f48cac1f1
commit 5637bb9612

View File

@@ -78,7 +78,33 @@ public class TaskTest {
}
System.out.println("========================================");
List<File> removeFileList = new ArrayList<File>(Arrays.asList(targetFile));
System.out.println("removeFileList(필터 전) : ");
removeFileList.forEach(file -> {
System.out.println(file);
});
System.out.println("========================================");
for(File file : targetFile){
checkFilePath.forEach(checkFile ->{
if(file.toPath().equals(checkFile))
removeFileList.remove(file);
});
}
System.out.println("removeFileList(필터 후) : ");
removeFileList.forEach(file -> {
System.out.println(file);
});
System.out.println("========================================");
/* 파일 삭제 */
for(File file : removeFileList) {
System.out.println("삭제 : " + file);
file.delete();
}
}
}