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

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

本问题已经有最佳答案,请猛点这里访问。

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


1
os.path.getmtime(filepath)

1
os.stat(filepath).st_mtime


formated:

1
2
import time
print time.strftime("%m/%d/%Y %I:%M:%S %p",time.localtime(os.path.getmtime(fname)))