标签: python file
如何在Python中获取文件的修改日期/时间?
答案 0 :(得分:38)
os.path.getmtime(filepath)
或
os.stat(filepath).st_mtime
答案 1 :(得分:19)
格式化:
import time print time.strftime("%m/%d/%Y %I:%M:%S %p",time.localtime(os.path.getmtime(fname)))