Modern smartphones based on Android are complex computing systems in which each byte of information has its own strictly defined place. Users often face the problem of lack of free space, without even knowing what exactly is taking up gigabytes in the internal memory. Understanding where the files of your instant messengers, games and utilities are physically located is the key to competent management of device resources.
The file system architecture Android is built on the Linux kernel, which imposes certain restrictions and rules for accessing data. Unlike personal computers with an open folder structure, the mobile operating system isolates application processes from each other for the sake of security. This means that each app has its own personal space, access to which from the outside can be limited without obtaining root access.
In this article we will analyze in detail the logic of data storage, paths to system directories and methods for safely wiping drives. You will learn to distinguish between temporary files and critical information, which will allow you to avoid accidentally deleting settings or progress in games when freeing up space.
Internal memory structure and system partitions
The internal storage of a smartphone is divided into several logical sections, each of which performs its own function. The bulk of user and application data resides in the section /data, which is mounted as internal memory. This is where, by default, all apps downloaded from Google Play are installed.
System files responsible for the operation of the operating system itself are stored in a protected section /system. The user cannot directly change the contents of this directory without unlocking the bootloader. Attempts to interfere in this area without proper qualifications may result in the device stopping booting.
โ ๏ธ Attention: Never try to manually delete files from the root system folders through file managers with superuser rights unless you are 100% sure of the purpose of each object. This may compromise the integrity of the firmware.
A partition is used for temporary files and cache. /cache. The data here is stored for a short time and can be deleted automatically by the system if there is not enough space or by the user through the Recovery menu without losing personal data. Understanding the division into system and user zones is critical to diagnosing memory problems.
If your device is running slowly, try clearing the cache partition through the Recovery menu (Recovery Mode), it is safe and not deletes your photos or contacts.
Application directories: Android and Obb
The bulk of user application data is concentrated in the root folder of the internal memory, which has a standard path /Android. Inside this directory there are two key directories, the clutter of which most often leads to a lack of space: data and obb.
The folder /Android/data contains specific data for each installed application. Messenger databases, app settings, downloaded files in the browser cache and offline navigator maps are stored here. The naming structure of subfolders usually corresponds to the package name of the application, for example com.whatsapp or com.google.android.youtube.
In turn, the directory /Android/obb is intended for storing additional files of large applications, most often these are heavy games with 3D graphics. Files with the extension .obb can occupy several gigabytes and represent resources that are not included in the main installation package APK.
- ๐ Folder
datastores settings, logins and caches of specific apps. - ๐ฎ Directory
obbcontains heavy resources for games (textures, models, sounds). - ๐ Access to these folders in new versions of Android (11 and higher) is limited to third-party file managers.
- ๐๏ธ Deleting the contents of these folders will reset the application to factory settings or require re-downloading the resources.
Starting with version Android 11, Google has tightened its access policy to these directories for privacy purposes. Standard file managers now do not show the contents of the folder Android in full, requiring special permission for each specific subdirectory.
Why folders disappear in Android 11+
New versions of the OS have introduced the Scoped Storage mechanism, which isolates application files. To see the contents, use the built-in Files file manager from Google or connect the phone to a PC in file transfer mode (MTP).
Storing media files and user documents
In addition to specialized system directories, there is a public internal memory space where photos, videos, music and documents are stored. These files are not strictly tied to a specific application and are available for viewing by any file manager.
Traditionally, images from the camera are saved in a folder DCIM/Camera, and downloads from the browser are in a directory Download. Messengers often create their own root folders, such as WhatsApp, Telegram or Viber, where received media files are stored in an open structure.
| Data type | Standard path | Description of contents |
|---|---|---|
| Photo and Video | /DCIM |
Pictures from the main and front camera, screenshots |
| Downloads | /Download |
Files downloaded from the browser or email |
| Audio | /Music or /Android/media |
Music tracks and ringtones |
| Documents | /Documents |
PDF, office files and archives |
It is important to regularly check the folder Downloadas it often turns into storage forgotten installation files and temporary documents that can be safely deleted. It is also worth paying attention to the folder .thumbnails inside DCIM, which can grow to enormous sizes, storing thumbnails of images.
Features of working with an SD memory card
Using an external memory card microSD allows you to expand the available space, but introduces its own nuances into the data storage architecture. The card can operate in two modes: as portable storage or as part of internal memory (Adoptable Storage).
In portable storage mode, the data on the card is written to a regular file system, and you can easily transfer the card to another computer to read files. However, modern versions Android by default offer to install applications only in the internal memory, transferring only media files to the card.
โ ๏ธ Attention: When formatting the card as internal memory, it is encrypted and becomes unreadable for other devices. Removing such a card without first unmounting it may lead to errors in the operation of applications.
If the card is used as internal memory, the system creates an encrypted partition on it, where parts of applications and their data can be transferred. In this case, the path to the data will look like /storage/XXXX-XXXX, where XXXX-XXXX is the unique volume identifier.
โ๏ธ Preparing a memory card
The speed of the memory card directly affects the performance of the smartphone. Using slow class cards Class 4 or Class 6 to install applications will lead to noticeable interface slowdowns and long game loading times.
Cloud storage and data synchronization
Modern ecosystem Android is increasingly shifting emphasis from local storage to cloud services. Application data can be duplicated or completely stored on the developers' servers, which saves space on the device.
The Service Google Drive automatically creates backup copies of system settings, application lists and data of some apps. Photos and videos are often synchronized with Google Photos, after which their local copies can be deleted, leaving only thumbnails in the cloud.
Many instant messengers, such as Telegram, use cloud architecture as their main one. In this case, the correspondence history and media files are stored on the serviceโs servers, and only a small cache remains on the phone for quick viewing. This is radically different from the approach WhatsApp, where all data is stored locally by default.
To access cloud data, you need a stable Internet connection. In the absence of a network, some applications may work in a limited mode until communication with the server is restored to synchronize changes.
Using cloud services with the "Free up space" function is the most effective way to store gigabytes of photos and videos without taking up the internal memory of your smartphone.
Tools for analyzing and managing memory
To visualize what your memory is doing, there are specialized utilities. Built-in tools Android allow you to see general statistics by category, but do not always show the detailed structure of folders.
Third-party applications, such as DiskUsage or Files by Google, build a visual memory map, where the size of each rectangle corresponds to the size of the file. This allows you to instantly find the heaviest objects, be it a forgotten movie in the downloads folder or an overgrown map cache.
When clearing data through the menu Settings โ Applications you can select the action "Clear cache" or "Clear data". The first deletes temporary files, the second resets the application to the state immediately after installation, deleting all logins and settings.
adb shell dumpsys diskstats
For advanced users, a command is available via ADB (Android Debug Bridge), which displays detailed statistics on disk usage by process. This requires connecting the phone to the computer and enabling USB debugging in the developer menu.
โ ๏ธ Attention: The settings menu interfaces may differ depending on the manufacturer's shell (MIUI, OneUI, ColorOS). If you do not find the item you need, use the search inside the settings menu for "Memory" or "Storage".
Frequently asked questions (FAQ)
Is it possible to transfer all applications to a memory card?
Unfortunately, no. It's up to app developers to decide whether to support the SD card transfer feature. System applications and many popular services (banks, instant messengers) often block this feature for the sake of security and performance.
Is it safe to delete the Android folder completely?
No, this is a critical error. Deleting the entire folder Android will lead to the loss of data from all applications, resetting settings and possible system inoperability. You can only delete the contents of specific subfolders of unused apps.
Why was the space not freed up after deleting the application?
Often, when deleting a app, its files remain in folders Download, Documents or in the root of the internal memory. Also, some messengers store media files in shared galleries, which are not deleted along with the application.
Where is application data stored in Android 13 and newer?
The principle of storage remains the same (/Android/data), but access to these folders for third-party file managers is even more limited. To view and clean it, it is better to use the built-in Cleanup tool in the phone settings or the official file manager.
What is a .nomedia file and why do you need it?
An empty file with the name .nomediaplaced in a folder prevents the system's media scanner from indexing images and videos in this directory. This is useful so that pictures from application cache folders do not appear in your gallery.