Possible Duplicate:
Android SD card free space
On some devices external sdcards are mounted in /mnt/sdcard/tflash . Now I need to find out how much free space is on the external sdcard .
I can't test it, so I am not sure if the following returns the size of /mnt/sdcard/tflash insteed of /mnt/sdcard
StatFs stat = new StatFs("/mnt/sdcard/tflash");
long blockSize = stat.getBlockSize();
long totalBlocks = stat.getBlockCount();
return totalBlocks * blockSize;
Any hints how to find the free space of /mnt/sdcard/tflash or /mnt/sdcard/external_sd