1. 程式人生 > >python自動化-找到最新生成的測試報告檔案

python自動化-找到最新生成的測試報告檔案

#==============查詢測試報告目錄,找到最新生成的測試報告檔案==========
def new_report(testreport):
   lists = os.listdir(testreport)
   lists.sort(key=lambda fn: os.path.getmtime(testreport + "\\" + fn))
   print(('最新測試結果' + lists[-1]))
   file_new = os.path.join(testreport,lists[-1])
   print(file_new)
   return file_new