如何在Python中获取文件的修改日期/时间?
os.path.getmtime(filepath)
要么
os.stat(filepath).st_mtime
格式化:
import time print time.strftime("%m/%d/%Y %I:%M:%S %p",time.localtime(os.path.getmtime(fname)))