RosettaCodeData/Task/File-modification-time/Python/file-modification-time.py

14 lines
319 B
Python
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import os
#Get modification time:
modtime = os.path.getmtime('filename')
#Set the access and modification times:
os.utime('path', (actime, mtime))
#Set just the modification time:
os.utime('path', (os.path.getatime('path'), mtime))
#Set the access and modification times to the current time:
os.utime('path', None)