EASY7

[Python] 외부 파일 존재 여부 확인하기 본문

개발 공부/Python

[Python] 외부 파일 존재 여부 확인하기

E.asiest 2022. 1. 18. 23:21

외부 파일 존재 여부 확인하기

파일을 읽기 전에 파일의 존재 여부 파악 해야할 경우가 있다. 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

 

 

 

 

 

Comments