【python】获取目录下的最新文件夹/文件

直接上代码

 def new_report(test_report):
lists = os.listdir(test_report) #列出目录的下所有文件和文件夹保存到lists
print(list)
lists.sort(key=lambda fn:os.path.getmtime(test_report + "\\" + fn))#按时间排序
file_new = os.path.join(test_report,lists[-1]) #获取最新的文件保存到file_new
print(file_new)
return file_new
if __name__=="__main__":
test_report="path"#目录地址
new_report(test_report)
上一篇:MAYA打造玻璃板爆炸的特效动画


下一篇:Python读取指定目录下指定后缀文件并保存为docx