Trandent API
POST
COMMUNITY
public @ResponseBody String boardFileDelete() {
String path = "C:\Users\Public\Pictures\Sample Pictures\abc.jpg" // 삭제할 파일의 경로
File file = new File(path);
if(file.exists() == true){
file.delete();
}
return null;
이렇게 하면 해당 파일이 삭제가 됩니다.