vote up 4 vote down star

How do I get the modified date/time of a file in Python?

flag

1 Answer

vote up 14 vote down check
os.path.getmtime(filepath)

or

os.stat(filepath).st_mtime
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.