Modern Android users often encounter an incomprehensible situation: when connecting a smartphone to a computer or using a file manager, the folder Android/data turns out to be empty or unviewable. Until recently, game caches, application settings and downloaded files were stored here, but now access to them is limited. This is not a system failure or a fault of your device, but the result of fundamental changes in Google's security policy.

Starting with version Android 11, the company has implemented strict application isolation rules known as Scoped Storage. These changes are aimed at protecting the user's personal data from abuse by third-party software. Now applications cannot uncontrollably scan the entire memory of the device, and file managers are deprived of the rights to read the system directories of other apps without special permissions. That's why you see an empty folder where you used to find gigabytes of data.

In this article, we will take a detailed look at the technical reasons for blocking access, explain the difference between visible and hidden files, and also provide working instructions for bypassing restrictions for advanced users. You will learn how to access data through ADB, which file managers can still work with system partitions and why the standard Explorer no longer shows the contents of the folder obb.

Reasons for access restrictions in Android 11 and higher

The main reason for the disappearance of files from public access was the concept Scoped Storage (Isolated storage). In older versions of the operating system, any application with permission to read memory could access all files on the drive. This created huge risks for privacy: malicious software could steal data from instant messengers, banking applications, or personal photos without the ownerโ€™s knowledge.

Google solved this problem by dividing the file system into isolated sandboxes. Now each application runs only in its own directory. An attempt by a third-party file manager to look into someone else's folder Android/data is blocked at the system kernel level. Even if you see the folder itself, its contents will be hidden, since the standard Explorer does not have privileges system UID.

โš ๏ธ Warning: Attempts to obtain root access to bypass these restrictions may lead to loss of warranty and disruption of banking applications (SafetyNet/Play Integrity API). Use such methods only as a last resort.

In addition, changes have affected access to media files. If previously applications could freely read any jpg or mp3 files, now they must request access to specific types of media through the system dialog. This complicates the life of ransomware viruses, but creates inconvenience for users accustomed to complete freedom of file management.

๐Ÿ“Š Have you encountered the problem of an empty data folder?
Yes, after updating to Android 11
Yes, after purchasing a new smartphone
No, I have an old version of Android
I use only cloud storage

Differences between the Data and Obb folders

Many users confuse the purpose of the two main directories inside the Android system folder. Understanding the difference between the two is critical to properly managing memory and installing mods for games. Although both folders are often hidden at the same time, they perform completely different functions in the system architecture.

The directory Android/data is intended for storing user data of specific applications. Here are cache files, downloaded pictures from social networks, offline maps of navigators and app settings. Deleting the contents of this folder for a specific application usually resets its settings or requires you to download the content again, but does not delete the application itself.

In contrast, the Android/obb (Opaque Binary Blob) folder is used primarily by games to store heavy resources. These can be high-resolution textures, audio tracks, 3D models and levels. The files here have an extension .obb and often weigh several gigabytes. When installing a game from Google Play, this data is downloaded automatically, but when manually installing mods, you often have to copy it here.

Characteristics Data folder Obb folder
Purpose Cache, settings, application logs Game resources (textures, sound)
File type Various (db, xml, jpg, tmp) Data archives (.obb)
Effect of deletion Resetting the application settings The game will stop starting
Size From several MB to GB Often several GB

It is important to note that in new versions of Android, both of these directories are subject to the same access rules. The default system file manager will not show you the contents of any of them if you simply connect the phone to the PC in file transfer mode (MTP).

๐Ÿ’ก

If you are installing the game from outside Google Play, make sure that the cache folder in obb is named exactly the same as the game package (for example, com.rockstargames.gtasa), otherwise the game will not see the files.

How to see the files through a special file manager

Despite system limitations, there are ways to view the contents of a folder data without connecting to a computer and using complex console commands. Some developers of file managers have found a legal workaround using a special system interface for accessing documents (SAF - Storage Access Framework).

One โ€‹โ€‹of the most popular solutions is the application Files (not to be confused with the system Files by Google) or Solid Explorer. The first time you try to enter the folder Android/data such an application will open a system window asking for permission. You will need to click the "Use this folder" button and confirm the action by clicking "Allow". After this procedure, the manager will have access to read and write files in this directory.

However, this method has its own nuances. Access is granted only to a specific manager application. If you uninstall it or clear app data, the permission will reset and you will have to repeat the process. In addition, some smartphone manufacturers (for example Xiaomi or Huawei) can even block this method at the level of their MIUI or EMUI shell.

โš ๏ธ Attention: Smartphone shell interfaces are constantly changing. If the "Allow" button is inactive or the window does not appear, the manufacturer may have blocked this function in the latest firmware.

Another option is to use managers with built-in functions for accessing system partitions, such as MT Manager or ZArchiver. These tools are often used by modders and can request special permissions through Accessibility Services, which allows them to bypass standard SAF restrictions.

โ˜‘๏ธ Check access through the file manager

Done: 0 / 4

Accessing system files through a computer (ADB)

For users who need full control over the file system, the most reliable method is to use debugging USB (ADB). This method does not require root access, but does require a computer and minimal technical skills. Through ADB, you get access to files with shell rights shellwhich are higher than regular applications.

First you need to activate the developer mode on your smartphone. To do this, go to Settings โ†’ About phone and quickly click 7 times on the "Build number" item. Then in the "For Developers" menu that appears, enable the "USB Debugging" item. Connect your phone to the PC and confirm the debugging permission on the smartphone screen.

After installing ADB platform tools on your computer, you can run a command to copy files from a hidden folder to your computer. For example, to copy the entire game data folder, use the command:

adb pull /sdcard/Android/data/com.example.game/ C:/GameBackup/

This command will copy the contents of the game directory to the computer disk in the C:/GameBackup/ folder. The reverse operation (writing files to the phone) is performed similarly, but requires attention to access rights. If an application is already running, it may block writing to its files, so sometimes you need to force stop the application before copying new data.

What to do if ADB does not see the device?

Make sure that the ADB Interface drivers for your phone model are installed. Try replacing the USB cable with the original one or use another USB port, preferably USB 2.0, as some USB 3.0 ports can cause conflicts with debugging.

Problems with cache and memory cleaning

Restricting access to the folder data seriously complicated the process of manual garbage cleaning. Previously, users could regularly go into this directory and delete old cache files of instant messengers or browsers, freeing up gigabytes of space. Now standard cleaning through the phone settings has become the only safe method for most users.

When you try to delete files through a third-party explorer without the correct rights, you will receive an "Access Denied" error or simply will not see the files. This leads to the fact that โ€œdead weightโ€ in the form of a cache can take up space for months. This problem is especially relevant for social networks and instant messengers, which cache every image and video viewed.

For effective cleaning, it is recommended to use the systemโ€™s built-in tools. Go to Settings โ†’ Applications, select the desired application and click "Storage". There you will see a "Clear cache" button. This method is guaranteed to work, since the system itself manages access rights to its own data.

  • ๐Ÿ—‘๏ธ Using built-in cleaning ensures that only temporary files are deleted without affecting important data.
  • ๐Ÿ“‚ Manual deletion via ADB requires precise knowledge of the names folders, otherwise you can delete the unnecessary ones.
  • โš™๏ธ Third-party โ€œcleanersโ€ without root access in new versions of Android are practically useless for deep cleaning.

Some users try to get around this by deleting the application itself and installing it again. This does clear the data folder completely, but you lose all settings, logins and progress in games if they are not saved in the cloud.

๐Ÿ’ก

The built-in "Clear cache" function in the application settings is the only safe and guaranteed way to free up space in the data folder without root access and a computer.

Data recovery and transferring games

Difficulties accessing the folder Android/data often arise when transferring games to a new smartphone or when restoring data after a reset. If you are used to making backups of folders with game caches manually, then on Android 11+ this method no longer works through regular copy-paste on the computer.

To transfer heavy games with cache, you now need to use specialized tools. For example, some launchers or game managers have built-in data migration features. You can also use the method with ADB described above: dump the folder obb from the old phone and upload it to the new one.

It is important to respect the directory structure. If you copy game files PUBG Mobile, they must be located strictly along the path Android/obb/com.tencent.ig/. If you simply put them in the root or folder data, the game will display an error loading resources when you start and will offer to download them again, ignoring your files.

โš ๏ธ Attention: When transferring application data between different versions of Android (for example, from 10 to 13), database compatibility conflicts are possible. It is recommended that after transferring files, you clear the application cache through the settings so that it recreates the configuration files for the new system.

It is also worth considering that some applications link data to a unique device identifier. In such cases, even a complete copy of the folder data will not help restore progress or settings - the server simply will not accept data from the โ€œnewโ€ device.

Frequently asked questions (FAQ)

Why is the Android/data folder empty, although the games are installed?

The folder is not empty, there are files there. They are hidden from your file manager due to security restrictions in Android 11 and above. To see them, you need to use a special file manager with SAF support or connect the phone to a PC and use ADB.

Is it possible to delete the data folder completely to speed up the phone?

No, you cannot delete the entire folder Android/data . This will result in the loss of all application settings, reset authorizations and delete offline data. You can only delete the contents of the folders of specific applications that you want to reset or delete.

How to copy the game cache to your computer for backup?

The most reliable way is to use the ADB command: adb pull /sdcard/Android/obb/game.name/. Standard copying through Windows Explorer will not work, since you will not see the files inside the folder.

Will access to these folders appear in Android 15?

Unlikely. Google's policy aims to further tighten application isolation. With each new update, access to shared storage becomes more and more limited to increase the security of user data.

Will obtaining root access help you see these files?

Yes, root access give full access to the entire file system, including hidden partitions. File managers with superuser rights (for example, Root Explorer) will be able to display and change any files in the data folder without restrictions.