获取指定文件夹下所有文件并按修改时间倒序排列
import os, glob, time
def searchAllFilesByTimeReversed(path, reverse=True):
return sorted(glob.glob(os.path.join(path, '*')), key=lambda x: time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(os.path.getctime(x))), reverse=reverse)
本文来自博客园,作者:海_纳百川,转载请注明原文链接:https://www.cnblogs.com/chentiao/p/16312009.html,如有侵权联系删除