码迷,mamicode.com
首页 > 其他好文 > 详细

筛选最新生成的报告——sort

时间:2018-05-12 15:14:44      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:return   std   time   dir   ret   .so   sdi   not   FN   

筛选出最新报告发送,返回报告路径

import os
def filePath(path):
return os.path.join(os.path.abspath(os.path.dirname(os.path.dirname(__file__))),path)
#所有报告都放在report下面
def reportPath():
#筛选出最新生成的报告
reportPath=filePath(‘report‘)
listDir=os.listdir(reportPath)
listDir.sort(key=lambda fn:os.path.getmtime(reportPath+"\\"+fn) if not os.path.isdir(reportPath+‘\\‘+fn) else 0)
file_new=os.path.join(reportPath,listDir[-1])
return file_new

筛选最新生成的报告——sort

标签:return   std   time   dir   ret   .so   sdi   not   FN   

原文地址:https://www.cnblogs.com/langhuagungun/p/9028575.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!