사진파일 하나 삭제할때 String img = rs.getString("img"); String path = request.getRealPath("/event/img"); File file = new File(path+"/"+img); if(file.exists()) file.delete();
여러 사진 파일 삭제할때 String[] img = rs.getString("img").split(","); String path = request.getRealPath("/event/img"); File file new File(path+"/"+img); if(file.exists()) file.delete();