Is there any app can analyze android phone /data d...
Создано: 2 февраля 2026 г.
Отвечено с использованием GPT-5.2 Thinking от Chat01
Создано: 2 февраля 2026 г.
Отвечено с использованием GPT-5.2 Thinking от Chat01
Is there any app can analyze android phone /data directory subfolder sizes with root?
Yes — but on newer Android versions, some GUI “storage analyzers” can’t see all of /data (especially /data/data) even with root, due to SELinux / sandboxing quirks. Here are the options that most often work:
How to use (typical): open DiskUsage → pick the storage/partition it offers → drill down into /data (if offered) → expand folders.
/data/data on Android 11 where Solid Explorer can’t. (XDA Forums)How to use: enable Root access in MiXplorer → browse to /data → long-press a folder → Properties / Calculate size (wording varies by version).
/data/data may be limited)/data/data” issue on Android 11. (XDA Forums)su + du / ncduIf you want “show me subfolder sizes” with minimal drama, this is usually the most dependable.
Example commands:
shsu -c 'du -h --max-depth=2 /data | sort -h'
or interactive:
shsu -c 'ncdu /data'
du is the standard tool to total directory sizes. (Ask Ubuntu)
And note: access to /data/data from apps can be SELinux/sandbox-dependent, which is why CLI-as-root often succeeds where some file managers don’t. (GitHub)
/data/data: MiXplorer. (XDA Forums)du/ncdu. (Ask Ubuntu)If you tell me your Android version (e.g., 11/12/13/14) and what root method you’re using (usually Magisk), I can point you to the option that’s most likely to work on that setup.