본문 바로가기
IT/Java

Java File 존재여부 체크

by 성준하이 2022. 11. 23.
반응형

자바에서 파일을 읽다가 파일 존재 여부를 체크하는 방법에 대해서 정리를 해둔다.

 

크게 2가지가 있다.

 

Try Catch 문
FileReader fr;
try{
    fr = new FileReader(path);
}catch (FileNotFoundException e) {
    logger.debug("찾을 수 없는 파일");
}   

파일을 읽고 없을시 FileNotFoundException 으로 처리를 하였다.

 

File 객체의 exists()
private boolean checkFile(String filePath) {
        File file = new File(filePath);
        return file.exists();
    }

exists 함수를 사용하여 존재 여부를 판단할수 있다.

반응형

'IT > Java' 카테고리의 다른 글

Eclipse에서 IntelliJ 단축키 사용하기  (21) 2022.11.26
JPA 로그 설정 관련  (25) 2022.11.24
Java 에서의 Apache POI  (37) 2022.11.22
Spring AOT 란?  (38) 2022.11.21
Spring 6.0 / SpringBoot3.0 에 대해  (29) 2022.11.20

댓글