python 之 查找某目录中最新的文件

2018-07-19 05:47:00来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

记录一下这个方法,感觉很有用!>.<

 1 import os
 2 def find_newest_file(path_file):
 3     lists = os.listdir(path_file)
 4     lists.sort(key=lambda fn: os.path.getmtime(path_file +'\\'+fn))
 5     print(lists)
 6     file_newest = os.path.join(path_file,lists[-1])
 7     return file_newest
 8 if __name__ =='__main__':
 9     file_newest = find_newest_file(r'D:\pythoncode\login_test\report')
10     print(file_newest)

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Celery框架

下一篇:w2_自学python_模块_列表_元组_字典_文件