vote up 2 vote down star
1

Before i re-invent this particular wheel, has anybody got a nice routine for calculating the size of a directory using Python? It would be very nice if the routine would format the size nicely in Mb/Gb etc. Thanks.

flag

4 Answers

vote up 7 vote down check

This grabs subdirectories:

import os
start_path = '.'
total_size = 0
for dirpath, dirnames, filenames in os.walk(start_path):
    for f in filenames:
        fp = os.path.join(dirpath, f)
        total_size += os.stat(fp).st_size

And a oneliner for fun using os.listdir:

sum([os.stat(f).st_size for f in os.listdir('.') if os.path.isfile(f)])

Reference:

os.walk

os.stat - *st_size* Gives the size in bytes

link|flag
1  
+1 but the oneliner doesn't return a valid result because it is not recursive – luc Sep 8 at 10:19
Yeah, it's just for the flat directory case. – monkut Sep 8 at 10:23
vote up 0 vote down

for getting the size of one file, there is os.path.getsize()

>>> import os
>>> os.path.getsize("/path/file")
35L

its reported in bytes.

link|flag
vote up 0 vote down

monknut answer id good but it fails on broken symlink, so you also have to check if this path really exists

if os.path.exists(fp):
    total_size += os.stat(fp).st_size
link|flag
vote up 1 vote down

I found this one. http://mail.python.org/pipermail/python-list/2000-June/037460.html that does the rounding for you.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.