파일의 생성 날짜는 os.path 및 time 라이브러리를 사용하여 액세스 할 수 있습니다.
import os.path, time time.ctime(os.path.getctime("test.txt"))
이 코드 예제는 os.path 라이브러리를 사용하여 test.txt 파일의 시간에 액세스합니다. 그 시간은 시간 모듈을 사용하여 형식화됩니다. 결과 문자열은 렌더링을 위해 출력에 기록됩니다.
import os.path, time print("created: %s" % time.ctime(os.path.getctime("test.txt")))
$ py test.py created: Wed Jul 4 14:42:37 2018