seba123neo
seba123neo

Reputation: 4748

Get Internal Available Storage in Device

I need to know how much internal space is left on device, but "internal" space no external SD card.

This code is used for external SD space.

how-to-check-available-space-on-android-device-on-mini-sd-card

anyone know how to get the free internal space?

Thanks in advance.

Upvotes: 1

Views: 1282

Answers (1)

CommonsWare
CommonsWare

Reputation: 1006819

The code you linked to is what you need. However, rather than:

StatFs stat = new StatFs(Environment.getExternalStorageDirectory().getPath());

use something like:

StatFs stat = new StatFs(getFilesDir().getPath());

Upvotes: 5

Related Questions