23

如何在 Python 中获取文件的修改日期/时间?

4

2 回答 2

39
os.path.getmtime(filepath)

或者

os.stat(filepath).st_mtime
于 2008-09-23T13:35:07.967 回答
19

形成:

import time
print time.strftime("%m/%d/%Y %I:%M:%S %p",time.localtime(os.path.getmtime(fname)))
于 2011-05-24T12:06:59.110 回答