4
score
38.9K
views
no
status
CC BY-SA 4.0
How can I get the size of a folder on SD card in Android?
You can query MediaStore for a directory size on internal storage. This is much faster than a recursive method getting the length of each file in a directory. You must have READ_EXTERNAL_STORAGE permission granted....