File 클래스를 이용한 파일 삭제
import java.io.*;
public class FileDelete {
public static void main(String[] args) {
if(args.length != 1){
System.out.println("사용법 : java FileDelete 파일이름");
System.exit(0);
} // if end
File f = new File(args[0]);
if(f.exists()){ // 파일의 존재하면 true 존재하지 않으면 false를 반환한다.
boolean deleteflag = f.delete(); // 파일을 삭제하면 true 삭제하지 않으면 false를 반환한다.
if(deleteflag)
System.out.println("파일 삭제를 성공하였습니다.");
else
System.out.println("파일 삭제를 실패하였습니다.");
}else{
System.out.println("파일이 존재하지 않습니다.");
}
}//main
}
public class FileDelete {
public static void main(String[] args) {
if(args.length != 1){
System.out.println("사용법 : java FileDelete 파일이름");
System.exit(0);
} // if end
File f = new File(args[0]);
if(f.exists()){ // 파일의 존재하면 true 존재하지 않으면 false를 반환한다.
boolean deleteflag = f.delete(); // 파일을 삭제하면 true 삭제하지 않으면 false를 반환한다.
if(deleteflag)
System.out.println("파일 삭제를 성공하였습니다.");
else
System.out.println("파일 삭제를 실패하였습니다.");
}else{
System.out.println("파일이 존재하지 않습니다.");
}
}//main
}
'개인참고자료 > 자바(네트워크)' 카테고리의 다른 글
바이트 기반 스트림 - File 클래스를 이용한 임시파일의 생성과 삭제 (0) | 2008.07.13 |
---|---|
바이트 기반 스트림 - File 클래스를 이용한 디렉토리의 파일 목록 출력 (0) | 2008.07.13 |
바이트 기반 스트림 - File 클래스를 이용한 파일의 정보 구하기 (0) | 2008.07.13 |
바이트 기반 스트림 - File 클래스 (0) | 2008.07.13 |
자바 IO - 프로그래밍을 잘하려면(API) (0) | 2008.07.13 |