File이 존재하는지 확인하는 방법을 소개합니다.
File.exists()
File.exists()
는 파일 또는 폴더가 존재하는지 리턴합니다.
만약 폴더가 아닌, 파일이 존재하는지 확인하려면 File.isDirectory()
도 함께 체크해야 합니다.
import java.io.File;
import java.io.IOException;
public class FileExistsExample {
public static void main(String[] args) throws IOException {
File file1 = new File("/home/js/tests");
if (file1.exists()) {
if (file1.isDirectory()) {
System.out.println("file1: dir exists");
} else {
System.out.println("file1: file exists");
}
}
File file2 = new File("/home/js/tests/test1.txt");
if (file2.exists()) {
if (file2.isDirectory()) {
System.out.println("file2: dir exists");
} else {
System.out.println("file2: file exists");
}
}
}
}
Output:
file1: dir exists
file2: file exists
File.isFile()
File.isFile()
는 파일이 존재하는 경우 true를 리턴합니다. File의 주소가 폴더인 경우는 false를 리턴합니다.
이 API를 사용하면 파일 존재 유무를 체크할 때 File.isDirectory()
를 호출하지 않아도 됩니다.
import java.io.File;
import java.io.IOException;
public class FileExistsExample2 {
public static void main(String[] args) throws IOException {
File file1 = new File("/home/js/tests");
if (file1.isFile()) {
System.out.println("file1 exists");
}
File file2 = new File("/home/js/tests/test1.txt");
if (file2.isFile()) {
System.out.println("file2 exists");
}
}
}
Output:
file2 exists
Path.toFile()
Path 객체를 이용할 수도 있습니다.
Path.toFile()
은 File을 리턴하고, 위와 동일한 방법으로 확인할 수 있습니다.
import java.io.File;
import java.io.IOException;
import java.nio.file.Path;
import java.nio.file.Paths;
public class FileExistsExample3 {
public static void main(String[] args) throws IOException {
Path path = Paths.get("/home/js/tests/test1.txt");
if (path.toFile().isFile()) {
System.out.println("file1 exists");
}
File file = path.toFile();
if (file.exists() && !file.isDirectory()) {
System.out.println("file1 exists");
}
}
}
Output:
file1 exists
file1 exists
Loading script...
Related Posts
- Java - Unsupported class file major version 61 에러
- Java - String.matches()로 문자열 패턴 확인 및 다양한 예제 소개
- Java - 문자열 공백제거 (trim, replace)
- Java - replace()와 replaceAll()의 차이점
- Java - ArrayList 초기화, 4가지 방법
- Java - 배열 정렬(Sorting) (오름차순, 내림차순)
- Java - 문자열(String)을 비교하는 방법 (==, equals, compare)
- Java - StringBuilder 사용 방법, 예제
- Java - 로그 출력, 파일 저장 방법 (Logger 라이브러리)
- Java IllegalArgumentException 의미, 발생 이유
- Java - NullPointerException 원인, 해결 방법
- Seleninum의 ConnectionFailedException: Unable to establish websocket connection 해결
- Java - compareTo(), 객체 크기 비교
- Java - BufferedWriter로 파일 쓰기
- Java - BufferedReader로 파일 읽기
- Java charAt() 함수 알아보기
- Java - BigInteger 범위, 비교, 연산, 형변환
- Java contains()로 문자(대소문자 X) 포함 확인
- Java - Set(HashSet)를 배열로 변환
- Java - 문자열 첫번째 문자, 마지막 문자 확인
- Java - 문자열 한글자씩 자르기
- Java - 문자열 단어 개수 가져오기
- Java - 1초마다 반복 실행
- Java - 배열을 Set(HashSet)로 변환
- Java - 여러 Set(HashSet) 합치기
- Java - 명령행 인자 입력 받기
- Java - 리스트 역순으로 순회, 3가지 방법
- Java - 특정 조건으로 리스트 필터링, 3가지 방법
- Java - HashMap 모든 요소들의 합계, 평균 계산
- Java - 특정 조건으로 HashMap 필터링
- Java - 싱글톤(Singleton) 패턴 구현
- Java - 숫자 왼쪽에 0으로 채우기
- Java - String 배열 초기화 방법
- Java - 정렬된 순서로 Map(HashMap) 순회
- Java - HashMap에서 key, value 가져오기