zoukankan      html  css  js  c++  java
  • 查找前10最大文件

    当文件数量太多时,就

    IndexError: list index out of range。。。。。

    import os
    from os.path import join,getsize
    
    def formatsize(bytes):
        try:
            bytes = float(bytes)
            kb = bytes / 1024
        except Exception as e:
            print("wrong format string")
            return "error"
    
        if kb>1024:
            M=kb/1024
            if M>1024:
                G=M/1024
                return "%.2fG" %(G)
            else:
                return "%.2fM" %(M)
        else:
            return "%.2fkb" %(kb)
    
    l={}
    for root,dirs,files in os.walk(r"C:UsersjzhangDownloads"):
        for file in files:
            file1=join(root,file)
            # print(file1,getsize(file1))
            l[file]=getsize(file1)
    print(len(l))
    k=sorted(l.items(),key=lambda l:l[1],reverse=True)
    
    for i in range(0,10):
        # print(k[i][0],k[i][1])
        print(k[i][0],formatsize(k[i][1]))
  • 相关阅读:
    基础DP背包
    哲学思絮01
    Vue使用ElementUI
    Vue-Mock数据
    Vue生命周期
    Vue实战之CURD
    读《间客》有感
    ASP.Net Core网站发布
    Cycling之 标签化
    Vue环境搭建
  • 原文地址:https://www.cnblogs.com/goozgk/p/6648320.html
Copyright © 2011-2022 走看看