Search code examples
androidstoragediskdiskspace

How to find the amount of free storage (disk space) left on Android?


I am trying to figure out the available disk space on the Android phone running my application. Is there a way to do this programmatically?

Thanks,


Solution

  • Try StatFs.getAvailableBlocks. You'll need to convert the block count to KB with getBlockSize.