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.
|
|
This grabs subdirectories:
And a oneliner for fun using os.listdir:
Reference: os.stat - *st_size* Gives the size in bytes |
|||
|
|
I found this one. http://mail.python.org/pipermail/python-list/2000-June/037460.html that does the rounding for you. |
||
|
|
|
|
monknut answer id good but it fails on broken symlink, so you also have to check if this path really exists
|
||
|
|
|
|
for getting the size of one file, there is os.path.getsize()
its reported in bytes. |
||
|
|
