import java.io.*;
public class Example {
public static void main(String[] args) {
File f = new File("test.txt");
// 파일 존재 여부 판단
if (f.isFile()) {
System.out.println("OK 파일 있습니다.");
}
else {
System.out.println("그런 파일 없습니다.");
}
File d = new File("000");
// 디렉토리 존재 여부 판단
// 만약 exists() 메소드를 사용하면,
// 000 이라는 "파일"이 있어도 OK 가 나옴
if (d.isDirectory()) {
System.out.println("OK 디렉토리가 있습니다.");
}
else {
System.out.println("그런 디렉토리가 없습니다.");
}
}
}
public class Example {
public static void main(String[] args) {
File f = new File("test.txt");
// 파일 존재 여부 판단
if (f.isFile()) {
System.out.println("OK 파일 있습니다.");
}
else {
System.out.println("그런 파일 없습니다.");
}
File d = new File("000");
// 디렉토리 존재 여부 판단
// 만약 exists() 메소드를 사용하면,
// 000 이라는 "파일"이 있어도 OK 가 나옴
if (d.isDirectory()) {
System.out.println("OK 디렉토리가 있습니다.");
}
else {
System.out.println("그런 디렉토리가 없습니다.");
}
}
}
댓글
댓글 쓰기