# What is scoped storage on Android? — Adinand Auto File Sorter

Last reviewed: September 19, 2026. HTML version: https://adinandsorter.com/answers/what-is-scoped-storage

**Scoped storage is why apps see less of your storage than they used to.** Android's documentation says apps that target Android 10 and higher “are given scoped access into external storage, or scoped storage, by default”, and that such apps “have access only to the app-specific directory on external storage, as well as specific types of media that the app has created”. The stated goal is to give users more control over their files and to limit file clutter.

## What an app gets by default

Two things, and no more: its own directory on external storage, and the specific types of media it created itself. Everything else it has to be handed, through one of two routes the documentation names.

- "Shareable media files (images, audio files, videos)" go through the `MediaStore` API.
- "Other types of shareable content, including downloaded files" go through the Storage Access Framework — the system file picker.

That split explains a great deal of otherwise baffling app behaviour. An app that can happily see every photo on your phone but cannot find a PDF is not broken; it is using the media store, where an app can only touch files it created itself — that PDF was saved by your browser, so it belongs to the browser.

## What Android 11 tightened

Android 11 removed the thing most workarounds relied on: "Starting in Android 11, apps cannot create their own app-specific directory on external storage." It also closed the picker routes that used to grant a broad folder — the Download directory, the root of internal storage, the root of a reliable SD card — and blocked selecting anything inside `Android/data/` or `Android/obb/`. [The full list of what went](https://adinandsorter.com/answers/why-apps-cant-open-downloads-android-11).

For apps whose purpose genuinely needs more, the documentation names one route and scopes it: "some apps have a core use case that requires broad access of files on a device … Android provides a special app access called All files access for these situations." [What that permission does and does not grant](https://adinandsorter.com/answers/what-is-all-files-access).

## Where Adinand Auto File Sorter fits

It sits on the broad-access side, because sorting the Download directory unattended cannot be expressed any other way — and it stays inside the boundary anyway. It reads the folders you selected, starting with Downloads, and only the files sitting directly in them. It routes by file extension, so it never reads what is inside your files to sort them, and it moves them into `Downloads › Sorted Files`. On Android 10 it uses the older storage permissions and the MediaStore path, which is why watched folders beyond Downloads need Android 11 or newer.

Sources: [Android's data and file storage overview](https://developer.android.com/training/data-storage) and [Android 11 storage updates](https://developer.android.com/about/versions/11/privacy/storage), both read on 16 September 2026. What the app does comes from its own code audit.

Related: [What is All files access on Android?](https://adinandsorter.com/answers/what-is-all-files-access) · [Why apps can't open Downloads on Android 11](https://adinandsorter.com/answers/why-apps-cant-open-downloads-android-11) · [Where do downloaded files go on Android?](https://adinandsorter.com/answers/where-do-downloads-go-on-android)
