간단프로젝또 매쥐막~

jyp·2023년 1월 4일
0

프로젝또

목록 보기
13/13
사진파일 하나 삭제할때

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();
profile
국비 코딩

0개의 댓글