Status saving and Android's storage permissions, explained

Why apps now ask you to pick a folder instead of requesting blanket storage access — and why that change was good.

2 min read
androidstatusprivacy

If you used a status saver years ago, it asked for storage permission once and could then read your whole phone. Now it asks you to select a specific folder. That change confuses people, and it is worth knowing why it happened.

What changed

Android moved from broad storage permissions to scoped storage. Instead of "this app can read your files", the model became "this app can read the folder you explicitly hand it".

For status saving, that means granting the .Statuses folder specifically, through Android's own folder picker — a system screen, not the app's.

Why the app can't skip it

It genuinely cannot. The folder picker is drawn by Android, and the permission it returns is scoped to what you chose. An app has no way to grant itself access or to pre-select the folder for you; that restriction is the entire point.

So when a status saver walks you through picking a folder, it is not being awkward — that is the only route available.

Why this is an improvement

The old model was indefensible. "Let me save statuses" and "let me read every file on your phone" were the same permission, so an app that wanted one necessarily got the other. Plenty asked for it without needing it.

Scoped storage means a status saver can be granted exactly the statuses folder and nothing else. It cannot see your photos, documents, or other apps' data — not by policy, but because the permission does not extend there.

That is a better deal for you even though it costs one extra tap.

Getting the grant right

The most common failure is picking the wrong directory. The path is:

Android/media/com.whatsapp/WhatsApp/Media/.Statuses

Two things to watch: enable show hidden files if the picker hides .Statuses, and remember WhatsApp Business is a separate folder under com.whatsapp.w4b.

Grant the wrong folder and the app is looking at a real directory with no statuses in it — which presents as an empty list rather than an error.

Revoking it

The permission is yours to withdraw at any time in Android Settings. Doing so means the app can no longer list statuses, since that folder is the only place they exist. Files you already saved to your gallery are unaffected — they are ordinary files now.