EASY7
[Python] 외부 파일 존재 여부 확인하기 본문
외부 파일 존재 여부 확인하기
파일을 읽기 전에 파일의 존재 여부 파악 해야할 경우가 있다. isfile과 isdir 함수 활용할 수 있다.
import os.path
if os.path.isfile("C:\\windows\\notepad.exe"):
print("파일이 있습니다.")
if os.path.isnot
출처 : https://redcow77.tistory.com/376, https://technote.kr/207
'개발 공부 > Python' 카테고리의 다른 글
[python] 매개변수 받아오기 (0) | 2022.01.18 |
---|---|
[python] zip 파일 압축 풀기 (0) | 2022.01.18 |
[Python] 외부 파일 실행 (0) | 2022.01.18 |
[Qt5] Process finished with exit code -1073740791 (0xC0000409) 오류 (2) | 2021.12.25 |
[Pycharm] JSON string exceeds heap size limit (0) | 2021.09.13 |
Comments