How to change a file's date/timestamp?

P

Peter Hansen

pythos said:
How do you change a file's last-modified date and timestamp in Python?

utime(...)
utime(path, (atime, utime))
utime(path, None)

Set the access and modified time of the file to the given values.
If the second form is used, set the access and modified times to the
current time.


This and many other functions are in the 'os' standard module, one
of the few very very widely used and useful modules... you should
read the online docs for it, along with "sys", and "time" at least,
before doing any more coding. ;-)

-Peter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,007
Latest member
obedient dusk

Latest Threads

Top