Java tutorial
//package com.java2s; import android.os.Environment; import android.os.StatFs; import java.io.File; public class Main { /** * Checks if there is enough Space on SDCard * * @param needSize Size to Check * @return True if the Update will fit on SDCard, false if not enough space on SDCard Will also return false, if the * SDCard is not mounted as read/write */ public static boolean enoughSpaceOnSdCard(long needSize) { String status = Environment.getExternalStorageState(); if (!status.equals(Environment.MEDIA_MOUNTED)) { return false; } return (needSize < getRealSizeOnSdcard()); } /** * get the space is left over on sdcard */ public static long getRealSizeOnSdcard() { File path = new File(Environment.getExternalStorageDirectory().getAbsolutePath()); StatFs stat = new StatFs(path.getPath()); long blockSize = stat.getBlockSize(); long availableBlocks = stat.getAvailableBlocks(); return availableBlocks * blockSize; } }