Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python을 사용하여 파일이 있는지 여부를 확인하는 방법은 무엇입니까?


os.access(경로, 모드)를 사용하여 읽기, 쓰기 및 실행 권한 모드로 파일 권한 및 존재 여부를 확인할 수 있습니다.

예를 들어

>>> import os
>>> os.access('my_file', os.F_OK) # Check for existence of file
True
>>> os.access('my_file', os.R_OK) # Check for read access
True
>>> os.access('my_file', os.W_OK) # Check for write access
True
>>> os.access('my_file', os.X_OK) # Check for execution access
False