728x90
반응형
import os.path
file = 'test.txt'
if os.path.isfile(file):
print("Yes. it is a file")
esif os.path.isdir(file):
print("Yes. it is a directory")
esif os.path.exists(file):
print("Something exist")
else :
print("Nothing")
참고자료 : https://wikidocs.net/14304
728x90
반응형
'Programming > Python' 카테고리의 다른 글
[Python] 파일 읽고 쓰기 (0) | 2020.03.09 |
---|---|
[Python] Anaconda 가상환경에서 spyder 실행하기 (Windows) (2) | 2020.02.07 |
[Python] 필요 패키지 목록 requirements.txt 만들고, 설치하기 (0) | 2019.12.30 |
[Python] Python -m 의 의미 (0) | 2019.08.04 |
[Python] 구글 이미지 크롤링 하기 (0) | 2019.08.02 |