tags:

views:

70

answers:

3

What is an effective way to determine how much free space is on the SD card?

+1  A: 

If you just want to check it yourself, here are the steps to do it:

http://www.tech-recipes.com/rx/5641/android-how-to-check-available-internal-and-sd-card-memory-space/

UPDATE:

I just found that there is a better SO answer to this question:

http://stackoverflow.com/questions/3394765/how-to-check-available-space-on-android-device-on-mini-sd-card

James Black
+1  A: 

Create a file and write one byte at a time until you get an out of space exception.

Aaron C
A: 

Here is a function that allows you to retrieve the amount of memory in the android device. You can very easily find out the amount of memory that is left of you SD card via the phones device information. Please elaborate if your requirements are something else.

Shouvik