pip install natsort
if __name__ == '__main__':
from natsort import natsorted
x = ['41', '2', '11', '33']
y=natsorted(x)
print(x)
print(y)
['41', '2', '11', '33']
['2', '11', '33', '41']
def new_report(test_report):
lists =glob.glob(test_report+'/*.png') # 列出目录的下所有文件和文件夹保存到lists
print(lists)
lists.sort(key=lambda filen: os.path.getmtime( filen)) # 按时间排序
file_new = lists # 获取最新的文件保存到file_new
return file_new
if __name__ == '__main__':
file_new = new_report(r"I:\project\3d\detect\Complex-YOLOv4-Pytorch-master\dataset\kitti\testing\image_2")
print(file_new)
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/jacke121/article/details/124762028
内容来源于网络,如有侵权,请联系作者删除!