Walks a directory tree and prints what matches — big files, empty folders, leftovers.
find <path> [-type f|d] [-size +<N><suffix>] [-empty] [-maxdepth <n>] [-iname <pattern>] [-printf <format> | -exec stat -c <format> {} +]| Token | Meaning |
|---|---|
| -type f | d | Regular files, or directories. |
| -size +<N><suffix> | Bigger than N units. Always write the suffix: `c` bytes, `k` KiB, `m` MiB, `g` GiB — a bare number means 512-byte blocks and, on newer builds, something worse. |
| -empty | Directories with nothing in them, or empty files. |
| -maxdepth <n> | How deep to descend. |
| -iname <pattern> | Case-insensitive name match. Quote the pattern so the device shell leaves it alone. |
| -printf <format>Android 11+ | Print chosen fields per match: `%s` size in bytes, `%p` path, `%T@` modification time. |
find /sdcard -type f -size +100MEvery file over 100 MiB in shared storage.
find /sdcard -type d -emptyEmpty directories — the litter left behind by uninstalled apps.
find /sdcard/Download -maxdepth 1 -type f -iname '*.apk'Installers you downloaded and forgot.
One matching path per line by default. To get sizes in the same pass, either `-printf` on Android 11 and later or `-exec stat -c … {} +` everywhere — a second `stat` per file is both slow over a cable and racy.
| Field | Meaning |
|---|---|
| <path> | One match per line. |
| %s | File size in bytes. |
| %p | The path. |
| %T@ | Modification time as seconds, then a *nanosecond count* rather than a decimal fraction — `…0.5` means five nanoseconds. |
| find: bad arg '-printf' | Android 10 or earlier. Fall back to `-exec stat`. |
Android Storage Analyzer runs this command over USB and parses what comes back — a Chromium browser, no SDK, nothing uploaded.
Commands that turn up in the same session as find.
| Command | What it does |
|---|---|
| du | Reports how much disk space a directory tree occupies. |
| df | Reports free and used space per mounted filesystem. |
| rm | Deletes a file or a directory tree on the device. |
| dumpsys diskstats | Free space per partition, a disk write latency check, and a cached per-app breakdown of what is using storage. |
Checked against AOSP, toybox and kernel sources while writing the parsers behind our Web ADB tools. Where a behaviour genuinely varies by Android version or manufacturer, this page says so instead of giving a number that would be wrong on half the phones out there.
Switch on developer options and USB debugging on the phone, plug it in, then run `adb shell <command>` from a machine with platform-tools installed — or run `adb shell` on its own to get an interactive prompt and type the command without the prefix. If the command produces binary output, such as a screenshot, use `adb exec-out` instead of `adb shell`: the plain shell service attaches a terminal, which rewrites newline bytes and corrupts the data.
Not the ones on this reference. They run as the `shell` user, which can manage packages for its own Android user, read most `dumpsys` services, write the settings provider, inject input and read shared storage. Root is only needed for things this reference deliberately avoids — reading another app's private data (except through `run-as` on a debuggable build), writing system partitions, or reading `/data/anr` directly.
Either the Android version or the manufacturer. Some flags and fields arrived in a specific release, and those are noted per command. The rest is OEM patching, which hits `dumpsys` hardest: a dump is debug output whose text is whatever the service author last printed, and manufacturers change it and backport their changes. Read fields by name rather than by position, and treat an unfamiliar shape as a difference rather than as a failure.
For many commands, yes — the Web ADB tools on this site talk to a phone over WebUSB from a Chromium-based desktop browser, with no SDK installed and nothing uploaded. Each page links to the tool that runs its command, when one exists. Two limits are worth knowing: only one program can hold the ADB interface at a time, so a desktop `adb server` has to be stopped first, and `adb forward` and `adb reverse` cannot work in a browser at all.
Would rather click than type? The Web ADB Toolkit runs commands like this from a browser over USB. Or browse every command.