#연구/#Python

[파이썬/Python] 파일 존재 유무 체크하기 #Checking if a File Exists in Python #파일이 있는지 체크하기

every7hing 2020. 12. 14. 17:03
반응형

 

[파이썬/Python] 파일 존재 유무 체크하기 

#Checking if a File Exists in Python 

#파일이 있는지 체크하기

 

 

파이썬에서 특정 파일이 존재하는지 체크하는 방법을 3가지 소개합니다. 간단한 방법이므로, 기호에 맞게 사용하시면 될 것 같습니다.

 

1. try-except block (Python 3+)

try: 
    with open('/path/to/file', 'r') as fh:
        pass
except FileNotFoundError: 
    pass

 

 

2. OS package

import os 
exists = os.path.isfile('/path/to/file')

 

 

3. Using Path Object

from pathlib import Path
config = Path('/path/to/file') 
if config.is_file(): 
    pass

 

반응형