代码如下:
1
2
3
4
|
import os, glob, time def search_all_files_return_by_time_reversed(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) |
以上这篇python查找指定文件夹下所有文件并按修改时间倒序排列的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/xiaodongxiexie/article/details/76990246