반응형

 String path = (String) convertMap.get("path");

  String fileName = (String) convertMap.get("fileName");


String uploadPath =                 fileuploadProperties.getProperty("file.upload.path");

String RealFile = uploadPath + "/" + path + "/" + fileName;

File file = new File(RealFile);

if(file.exists() == true){

file.delete();

}

반응형

'JAVA' 카테고리의 다른 글

JAVA 메일 보내기 글자 깨짐현상  (0) 2019.02.27
파일 업로드 목록, 다운로드  (0) 2019.02.11
파일이름을 시간으로 변경하여 저장  (0) 2019.01.23
Java 기초  (0) 2019.01.22
JAVA_HOME 설정  (0) 2019.01.16

+ Recent posts