Skip to content

Instantly share code, notes, and snippets.

View li-jkwok's full-sized avatar

Jack Kwok li-jkwok

View GitHub Profile
@li-jkwok
li-jkwok / gist:e460a042326e8509ada9ec23ae677bdf
Created August 1, 2016 18:39
Getting Total Disk Space Available for Android Device
/**
* Get the total disk space available on this Android Device
*
* @return total size (in bytes) that is the total disk space avaialble on the device.
*/
public static long getTotalDiskSpace() {
StatFs statFs = new StatFs(Environment.getRootDirectory().getAbsolutePath());
long totalDiskSpace = statFs.getBlockCount() * statFs.getBlockSize();
return totalDiskSpace;
}