当前位置:天才代写 > tutorial > Python教程 > python获取文件夹大小的代码

python获取文件夹大小的代码

2018-05-17 08:00 星期四 所属: Python教程 浏览:556

python">import os
from os.path import join, getsize

def getdirsize(dir):
   size = 0L
   for root, dirs, files in os.walk(dir):
      size += sum([getsize(join(root, name)) for name in files])
   return size

if __name__ == '__main__':
   filesize = getdirsize(r'c:\windows')
   print 'There are %.3f' % (size/1024/1024), 'Mbytes in c:\\windows'

标签:python

 

    关键字:

天才代写-代写联系方式