If there will be a small number of files it should be easy with a recursive function to pass through all the files and add the size but what if there are lots of files, and by lots i really mean lots of files.
|
|
|
|
|
|
|
You mean something like this?
|
||
|
|
|
|
There is no other way to compute the size than recursively invoking stat. This is independent of Python; the operating system just provides no other way. The algorithm doesn't have to be recursive; you can use os.walk. There might be two exceptions to make it more efficient:
|
|||
|
|
|
|
There is a recipe for that problem in the Python Cookbook (O'Reilly). You can read the full solution with an example online: http://safari.oreilly.com/0596001673/pythoncook-CHP-4-SECT-24 or here: http://books.google.com/books?id=yhfdQgq8JF4C&pg=PA152&dq=du+command+in+python |
||
|
|
