Is it possible to easily get the size of a folder on the SD card? I use a folder for caching of images, and would like to present the total size of all cached images. Is there a way to this other than iterating over each file? They all reside inside the same folder?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Just go through all files and sum the length of them:
NOTE: Function written by hand so it could not compile! EDITED: recursive call fixed. EDITED: dirList.length changed to fileList.length. |
||||
|
|
|
|||||||
|
|
Iterating through all files is less than 5 lines of code and the only reasonable way to do this. If you want to get ugly you could also run a system command (Runtime.getRuntime().exec("du");) and catch the output ;) |
|||||||||||
|
|
below method return you size of folder:-
call above method :-
return you size of folder. |
|||
|
|
