python 으로 파일의 존재여부 확인할 때!!
import os.path
os.path.isfile(fname)
파일이 존재하면 True 리턴한다
출처 : https://stackoverflow.com/questions/82831/how-do-i-check-whether-a-file-exists-using-python?rq=1
현재 파일 경로를 알고 싶을 때는,
import os
print (os.getcwd()) #현재 디렉토리의
print (os.path.realpath(__file__))#파일
print (os.path.dirname(os.path.realpath(__file__)) )#파일이 위치한 디렉토리
- getcwd() : 현재작업디렉토리(current working directory)를 나타내는 스트링을 리턴
__file__
: 파일의 path를 저장- realpath() : file이 symbolic link인 경우 원본 위치를 찾아줌
'Django' 카테고리의 다른 글
[django celery]테스크 주기 설정하기 (1) | 2018.02.02 |
---|---|
[Django] Celery Redis 설치 (0) | 2018.01.30 |
csrf 및 form 구현 (0) | 2018.01.25 |
[Django] 테이블 paginator (0) | 2018.01.22 |
[Django] TypeError : __init__() missing 1 required positional argument: 'on_delete' 에러 (0) | 2018.01.22 |