码迷,mamicode.com
首页 > 其他好文 > 详细

计算目录大小

时间:2020-06-20 16:31:27      阅读:57      评论:0      收藏:0      [点我收藏+]

标签:全路径   lob   计算   方法   int   方法调用   listdir   global   inpu   

import os,os.path

directory = input(‘请输入目录或者文件地址:‘)

def getSzie(path):
global size
size = 0
if os.path.isfile(path):
size1 = os.path.getsize(path)
size += size1

if os.path.isdir(path):
    for file in os.listdir(path):
        #全路径
        filename = os.path.join(path, file)
        if os.path.isfile(filename):
            size2 = os.path.getsize(filename)
            size += size2
        elif os.path.isdir(filename):
            #递归方法调用
            #最后的大小一定要记得加上之前文件的大小
            size += getSzie(filename)

return size

size = getSzie(directory)
if size <= 1024:
print(‘目录大小为:{}字节‘.format(size))
elif size > 1024 and size<10241024:
print(‘目录大小为:{:.2f}KB‘.format(size/1024))
else:
print(‘目录大小为:{:.2f}MB‘.format(size/(1024
1024)))

计算目录大小

标签:全路径   lob   计算   方法   int   方法调用   listdir   global   inpu   

原文地址:https://www.cnblogs.com/lihuafeng/p/13168699.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!