[python]os.path.exists() 파일 존재 체크하기

· 13년 전 · 1371

#!/usr/bin/python

import os

if not os.path.exists("./test.txt"):
        print "test.txt file not exist"

if os.path.exists("./test.txt"):
        print "test.text file exist"

root@byoungguk-desktop:~# ./existtest.py 
test.txt file not exist
root@byoungguk-desktop:~# touch test.txt
root@byoungguk-desktop:~# ./existtest.py 
test.text file exist

 
|
댓글을 작성하시려면 로그인이 필요합니다.

팁게시판

디자인과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
제목 글쓴이 날짜 조회
13년 전 조회 595
13년 전 조회 600
13년 전 조회 904
13년 전 조회 643
13년 전 조회 494
13년 전 조회 875
13년 전 조회 1,002
13년 전 조회 1,029
13년 전 조회 1,790
13년 전 조회 945
13년 전 조회 532
13년 전 조회 772
13년 전 조회 1,372
13년 전 조회 849
13년 전 조회 480
13년 전 조회 1,413
13년 전 조회 514
13년 전 조회 495
13년 전 조회 422
13년 전 조회 731
13년 전 조회 470
13년 전 조회 931
13년 전 조회 973
13년 전 조회 1,374
13년 전 조회 577