获取最新文件的方法
file_lists = os.listdir(dir)
file_lists.sort(key=lambda fn: os.path.getmtime(
dir + "\\" + fn)
if not os.path.isdir(dir + "\\" + fn) else 0)
log.info()('最新的文件为: ' + file_lists[-1])
file = os.path.join(dir, file_lists[-1])
log.info()('完整路径:', file)
return file
# os.path.getmtime(file) 输出最近修改时间
# os.path.getctime(file) 输出文件创建时间
# os.path.getatime(file) # 输出最近访问时间