■ utime 함수를 사용해 파일/디렉토리의 수정 시간/액세스 시간을 수정하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import os statResult1 = os.stat("test.py") print(statResult1.st_ctime, statResult1.st_mtime, statResult1.st_atime) os.utime("test.py", None) # 현재 시간으로 수정한다. statResult2 = os.stat("test.py") print(statResult2.st_ctime, statResult2.st_mtime, statResult2.st_atime) """ 1663339692.2106738 1663340135.0361993 1663340135.0361993 1663339692.2106738 1663340227.8500173 1663340227.8500173 """ |