python文件夹排序笔记
【摘要】
natsort自然排序:
pip install natsort
if __name__ == '__main__': from natsort import natsorted x = ['41', '2', '11', '33'] y=natsorted(x) print(x) print(...
natsort自然排序:
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']
python文件夹时间排序
-
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)
文章来源: blog.csdn.net,作者:AI视觉网奇,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/jacke121/article/details/124762028
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)