zoukankan      html  css  js  c++  java
  • python按修改时间顺序排列文件

    import os
    
    def sort_file_by_time(file_path):
        files = os.listdir(file_path)
        if not files:
            return
        else:
            files = sorted(files, key=lambda x: os.path.getmtime(os.path.join(file_path, x)))#格式解释:对files进行排序.x是files的元素,:后面的是排序的依据.   x只是文件名,所以要带上join.
            return files
    
    print(sort_file_by_time("."))

    sorted中的lambda函数所表示的内容就是排序的依据(key)

    发现list.sort()返回None,而sorted(list)能够返回排好序的列表.

    新战场:https://blog.csdn.net/Stephen___Qin
  • 相关阅读:
    shell 参数个数
    小坑也难受
    MaHua简介
    airflow Operators
    datax
    T-SQL 更新表操作
    T-SQL时间函数
    linux学习网站
    好看的页面
    函数-1
  • 原文地址:https://www.cnblogs.com/Stephen-Qin/p/10296283.html
Copyright © 2011-2022 走看看