Have you downloaded a document but canโt find it? Or have the photos from the messenger disappeared from the gallery? Android distributes files into dozens of folders - from obvious /Download to hidden system directories like /data/media/0. Understanding this structure is more difficult than it seems: manufacturers like Samsung, Xiaomi or Google Pixel change the default paths, and applications often create their own storages.
In this article - a complete file storage map on Android: from standard folders for downloads to technical directories where caches, logs and temporary data are written. You will learn how to find lost files through Explorer, ADB or Total Commander, why some folders are not visible without root access, and how to reconfigure save paths to save space. And also - a list of applications that secretly create duplicate files in hidden directories (and how to stop it).
1. Standard Android folders: where files are saved by default
Most files end up in one of the 5 main directories in the internal memory. Their paths are the same for all devices, but manufacturers (for example, Huawei or OnePlus) can add their own subfolders or change the names to branded ones (like /Huawei/Download instead of the standard /Download).
Here is the basic structure:
- ๐ Download (
/storage/emulated/0/Download) - files downloaded through a browser (Chrome, Firefox), as well as most download managers, go here. Exception: some browsers (for example, Samsung Internet) create their own folder/Samsung/Internet. - ๐ธ DCIM (
/DCIM/Camera- photos and videos from the camera. The subfolder/Screenshotsstores screenshots (if they were taken using standard Android tools). - ๐ต Music, Podcasts, Ringtones โmedia files distributed by type. For example, Spotify downloads tracks to
/Android/data/com.spotify.music/files, but some players (like Poweramp) copy music here. - ๐ Documents - documents from Google Drive, Microsoft Office or other editors. Often empty, since many applications store files in their own directories (see the section about
/Android/data). - ๐ Pictures, Movies, Downloads - duplicate folders that some applications create (for example, Telegram saves media in
/Pictures/Telegram).
โ ๏ธ Attention: On devices with MicroSD path to files may begin with /storage/XXXX-XXXX (where XXXX is the unique identifier of the card). For example, /storage/1234-5678/DCIM/Camera. To avoid confusion, use an explorer that supports "root" paths (for example, Solid Explorer).
2. Hidden system folders: where Android stores them. cache, settings and temporary files
The operating system and applications create dozens of hidden directories that are not visible in standard Explorer. They can only be opened through root access or ADB (without superuser rights - read only) Here are the key paths:
| Folder | Path | What is stored | Access without root |
|---|---|---|---|
| data | /data |
System settings, application data, accounts, SMS/MMS, call log | โ Yes database |
| Android/obb | /storage/emulated/0/Android/obb |
Additional game files (cache, levels, textures). For example, Genshin Impact weighs ~15 GB here | โ Yes |
| Android/data | /storage/emulated/0/Android/data |
Local application data (game saves, cache Instagram, base WhatsApp) | โ Partially (only your files) |
| cache | /cache |
Temporary system files (updates, recovery logs) | โ No |
| media | /data/media/0 |
Symbolic link to /storage/emulated/0 (internal storage) |
โ Yes |
๐ How to view hidden folders? Use the ADB command:
adb shell ls -la /storage/emulated/0
Or install an explorer with root support (for example, FX File ExplorerCaution: deleting files from /data or /system can lead to system crash.
If you need to free up space, first check the folder /Android/data โgigabytes of cache from TikTok, Facebook or games. You can delete them through the app settings ("Storage โ Clear cache").
3. Where do popular applications save files (messengers, social networks, clouds)
Each application follows its own storage logic. For example, WhatsApp creates. folder /WhatsApp/Media, and Telegram โa whole hierarchy in /Telegram. Below is a table of key applications and their paths:
- ๐ฑ WhatsApp:
/WhatsApp/Media(photo, video, voice) +/WhatsApp/Databases(backups chats). Attention: files fromMediaautomatically appear in the gallery unless you disable the option in the settings. - ๐ฌ Telegram:
/Telegram/Telegram Images,/Telegram/Telegram Video. In the settings you can choose whether to save media to the gallery. - ๐ท Instagram:
/Pictures/Instagram(stories, posts),/Android/data/com.instagram.android/files(cache). - ๐ฎ Games: most store data in
/Android/obb/[package_name](for example,/Android/obb/com.miHoYo.GenshinImpact). data-i="126">Games/Android/data/[package_name]/files. - โ๏ธ Cloud services:
- Google Drive:
/Android/data/com.google.android.apps.docs/files(offline files). - Yandex Drive:
/Yandex.Disk. - Dropbox:
/Android/data/com.dropbox.android/files.
- Google Drive:
โ ๏ธ Attention: Some applications (for example, VK or OK.ru) save media files in /Pictures or /Downloads without notifications. To control this, check the settings of each messenger in the "Storage" or "Media" section.
How to find the application folder by its name?
1. Find out package name (for example, for WhatsApp this com.whatsapp).
2. The application folder will be by paths: /storage/emulated/0/Android/data/[package_name].
3. If there is no folder, the application does not use local storage or requires root for access.
4. How to change the default path for saving files
If the internal memory runs out and files are saved by default in /Download or /DCIM, paths can be reconfigured. Methods depend on the type of files:
๐ฑ For downloaded files (browser, download manager):
- Open Chrome โ
โฎ โ Settings โ Downloads. - Select "Download folder" and specify a new path (for example,
/storage/1234-5678/Downloadfor an SD card).
๐ธ For photos and videos from the camera:
On stock Android:
- Open
Camera โ Settings (โ๏ธ) โ Storage. - Select "Memory card" (if inserted).
On Samsung or Xiaomi the path may be hidden deeper: Camera settings โ Advanced โ Save location.
๐ต For music and podcasts:
Use players with path settings (for example, Poweramp or VLC):
- Open the application settings.
- Find the "Folders" or "Library" section.
- Add the desired path (for example,
/storage/1234-5678/Music).
โ๏ธ Transfer files to SD card
5. Finding files through ADB and Terminal: for advanced users
If a file has โdisappearedโ or is not visible in Explorer, it can be found through ADB (Android Debug Bridge) or the terminal. This works even for hidden system files.
๐ง Instructions for searching via ADB:
- Connect your phone to the PC and enable
USB debugging(Settings โ About phone โ Build number (7 taps) โ For developers โ Debugging USB). - On the PC command line, run:
adb shellsu
find /storage -name "file_name.extension" - If there are a lot of files, use filters:
find /storage -type f -size +10M | grep ".mp4"(this will find all video files >10 MB in size).
๐ Examples of useful commands:
- View free space:
df -h - Find largest files:
du -ah /storage/emulated/0 | sort -rh | head -n 20 - View system logs (requires root):
logcat -d | grep "E/"(will show errors)
โ ๏ธ Attention: Commands with rm (delete) or chmod (change rights) can damage the system. Always make a backup before experiments:
adb backup -apk -obb -shared -all -f backup.ab
6. Why files disappear from folders (and how to restore them)
Files can โdisappearโ for 5 main reasons:
- Caching: some applications (for example, gallery) do not show files until the media database is updated. Solution: Reboot your phone or manually run a scan:
adb shell am broadcast -a android.intent.action.MEDIA_MOUNTED -d file:///storage/emulated/0 - Hidden files: folders with a dot at the beginning (for example,
/.thumbnails) are not visible without enabling the "Show hidden files" option in Explorer. - File system errors: if the phone suddenly turns off while recording, the file may be โreset to zeroโ. Check the logs via
logcat. - Auto cleanup: Google Photos, Dropbox and other services can delete local copies after uploading to the cloud.
- Viruses/malware: some Trojans encrypt or move files. Check the device via Malwarebytes.
๐ Recovery methods:
- ๐ Search via DiskDigger or Recuva (works if the file has not been overwritten).
- ๐ Recovery from backup: if enabled Google Drive Backup, check
Settings โ Google โ Recovery. - ๐ฑ Checking the recycle bin: some explorers (for example, Files by Google) have a recycle bin with a storage period of 30 days.
If the file is missing after updating Android, try rolling back to the previous version via fastboot or restoring the data from a backup TWRP (required unlocked bootloader).
7. Storage optimization: how not to clutter up your memory
Android is prone to garbage accumulation: duplicate photos, application cache, unused APKs. Here's how to keep your storage under control:
๐ Removing unnecessary files:
- ๐ Cleaning
/Android/data: delete the cache of games and social networks (for example, Facebook can take up 5+ GB). - ๐ Duplicate photos: use Files by Google โ Cleanup โ Duplicates.
- ๐ฆ Unused APK: the folder
/Downloadis often clogged with outdated versions of applications.
โ Setting up automatic cleaning:
- Enable
Settings โ Storage โ Free up space(Android will offer to delete unnecessary files). - In Google Photos activate "Free up space" (will delete local copies remaining in the cloud).
- Use SD Maid to automatically clear the cache (requires root to complete functionality).
๐ Table of "junk" folders (can be safely cleaned):
| Folder | What it stores | How to clean |
|---|---|---|
/Android/data/<package>/cache |
Temporary application files | through the app settings ("Clear cache") |
/.thumbnails |
Thumbnails for the gallery | Delete manually (will be recreated automatically) |
/Download |
Old APKs, documents | Sort by date and delete unnecessary |
/Android/obb |
Game cache (for example, PUBG, Call of Duty) | Delete the game folder (save data may remain in /Android/data) |
FAQ: Frequently asked questions about storing files on Android
๐ Why are files from Telegram not shown in the gallery?
Telegram by default, saves media to /Telegram/Telegram Images, but does not update the Android media database. Solutions:
- In settings Telegram enable "Save to gallery".
- Manually scan the folder. via
adb shell am broadcast -a android.intent.action.MEDIA_SCANNER_SCAN_FILE -d file:///storage/emulated/0/Telegram/Telegram%20Images. - Use alternative clients (for example, Plus Messenger), where this option works more stable.
๐ฑ How to transfer applications to an SD card if there is no such option?
On new versions of Android (10+), transferring applications to SD is often blocked. Workarounds:
- Formatting SD as internal storage (all data on the card will be encrypted and linked to the phone).
- Use App2SD or Link2SD (requires root).
- Manual data transfer: some applications (for example, games) allow you to specify the path to files on SD in their settings.
โ ๏ธ On Samsung i Huawei this function can be disabled at the level firmware.
๐ Is it possible to return files after resetting to factory settings?
Yes, but with reservations:
- If it was enabled backup to Google Account, restore the data when you first set up the phone.
- For photo/video check Google Photo (if there was synchronization) or cloud services.
- For manual recovery use DiskDigger or Recuva (the chances are higher if no new files were written after the reset).
๐ซ It will not be possible to restore: SMS, call log, application settings (if there was no backup).
๐ก How to protect files from deletion?
Protection methods:
- Encryption: use Cryptomator or Android's built-in encryption (
Settings โ Security โ Encryption). - Hidden folders: rename the folder by adding a period at the beginning (for example,
/.secret_files). - Cloud backups: set up automatic upload to Google Drive or Mega.
- Prohibition of changes: via
chmod(requires root):adb shellsu
chmod 440 /storage/emulated/0/secret_folder
๐ค Why do the same files take up different sizes on different phones?
This is due to:
- File system:
F2FS(on new ones Samsung) compresses data more efficiently thanext4. - Caching: some firmware (for example, MIUI) creates additional temporary files.
- Block size: on on cheap phones, a block can be 4 KB, and on flagships - 16 KB, which affects the โweightโ of small files.
- Media compression: Google Photo in the "Space Saving" mode reduces the size of the photo.