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

14 lines
319 B
Python
Raw Permalink Normal View History

2013-04-10 21:29:02 -07: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)