Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

4 Answers

Just go through all files and sum the length of them:

/**
 * Return the size of a directory in bytes
 */
private static long dirSize(File dir) {

    if (dir.exists()) {
        long result = 0;
        File[] fileList = dir.listFiles();
        for(int i = 0; i < fileList.length; i++) {
            // Recursive call if it's a directory
            if(fileList[i].isDirectory()) {
                result += dirSize(fileList [i]);
            } else {
                // Sum the file size in bytes
                result += fileList[i].length();
            }
        }
        return result; // return the file size
    }
    return 0;
}

NOTE: Function written by hand so it could not compile!

EDITED: recursive call fixed.

EDITED: dirList.length changed to fileList.length.

share|improve this answer
You might want to replace findFile by dirSize :) – Maurits Rijk Oct 28 '10 at 8:23
/**
 * Try this one for better performance
 * Mehran
 * Return the size of a directory in bytes
 **/

private static long dirSize(File dir) {
    long result = 0;

    Stack<File> dirlist= new Stack<File>();
    dirlist.clear();

    dirlist.push(dir);

    while(!dirlist.isEmpty())
    {
        File dirCurrent = dirlist.pop();

        File[] fileList = dirCurrent.listFiles();
        for (int i = 0; i < fileList.length; i++) {

            if(fileList[i].isDirectory())
                dirlist.push(fileList[i]);
            else
                result += fileList[i].length();
        }
    }

    return result;
}
share|improve this answer
2  
Since we're talking about file operations, the recursion is unlikely to account for much of the performance hit. Also, the java.util.Stack implementation is very slow. I tried to optimize a recursive algorithm with it and it was actually slower then to let the JVM do its job. – Kevin Coulombe Dec 12 '11 at 5:21
java.util.Stack class methods are synchronized. If you really want to avoid recursion it's better to use LinkedList. – Roman Mazur Feb 12 at 14:06

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 ;)

share|improve this answer
1  
Fair enough. Just figured it was such a common use case that there should be some native solution. Laziness is good ... Five lines later, and I'm happy :) – Gunnar Lium Oct 28 '10 at 8:38
In Clojure: (defn dir-size [dir] (reduce + (map #(.length %) (.listFiles (new File dir))))) – Maurits Rijk Oct 28 '10 at 12:19
I don't think it's safe to rely on du being available and executable. – David Caunt Mar 14 '11 at 11:04
How exactly does one fire the "du" command? I tried - Runtime.getRuntime().exec("/system/bin/du -b -d1 "+dir.getCanonicalPath(), new String[]{}, Environment.getRootDirectory()); didnt work. Nor did - (Runtime.getRuntime().exec("du")) – Amey Jul 7 '11 at 19:53

below method return you size of folder:-

public static long getFolderSize(File dir) {
long size = 0;
for (File file : dir.listFiles()) {
    if (file.isFile()) {
        // System.out.println(file.getName() + " " + file.length());
        size += file.length();
    } else
        size += getFolderSize(file);
}
return size;
}

call above method :-

File file = new File(Environment.getExternalStorageDirectory().getPath()+"/urfoldername/");

long folder_size=getFolderSize(file);

return you size of folder.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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