자바 파일 삭제하는 법
Files.deleteIfExists(file)
Path 객체를 만들 때는 이미지의 이름을 포함한 Full Path를 넣어서 만들어야 함.
그러므로 이미지를 관리하는 테이블에는 Full Path를 저장하는 것이 좋다.
Path file = Paths.get(imageFullPath);
Files.deleteIfExists(file);
Files.deleteIfExists(file)
Path 객체를 만들 때는 이미지의 이름을 포함한 Full Path를 넣어서 만들어야 함.
그러므로 이미지를 관리하는 테이블에는 Full Path를 저장하는 것이 좋다.
Path file = Paths.get(imageFullPath);
Files.deleteIfExists(file);