4. Check If File or Directory Exists
페이지 정보
작성자 관리자 댓글 0건 조회 4,013회 작성일 20-07-20 00:03본문
4. Check If File or Directory Exists
import os.path
from os import path
def main():
print ("File exists:"+str(path.exists('파일명.txt')))
print ("directory exists:" + str(path.exists('myDirectory')))
if __name__== "__main__":
main()
댓글목록
등록된 댓글이 없습니다.