Have you downloaded a game to your smartphone, but canโt find its file? Or want to transfer your saves to another device, but donโt know where the data is stored? The problem is that Android distributes game files into several folders โ and their location depends on the installation method, OS version and even device model. In this article we will analyze all possible paths: from standard directories Google Play to manual installation of APKs and emulators like BlueStacks.
For example, games from Play Market usually downloaded to a temporary folder /data/app, but after installation their files are scattered across /data/data (for user data) and /sdcard/Android/obb (for additional resources). And if you install the APK manually, the source file may remain in Downloads or a special folder in the file manager. We'll show you how to find every type of file - from APK to cache - and what to do if folders are hidden.
Important: Some directories (for example /data/) require root access for access. If you are not ready to deal with superuser rights, we will suggest alternative methods - from using a file manager with root support to backup via ADB.
1. Standard folders for games from Google Play
When you install a game via Google Play Market, the system automatically distributes the files across several directories. The main ones are:
- ๐ฆ APK file of the game: stored in
/data/app/[game_package]-1/base.apk. This is the executable file that runs the game. Access to this folder is possible only with root access. - ๐๏ธ Application data:
/data/data/[game_pack]โ saves, settings and temporary files are located here. Also requires root. - ๐ฎ Additional resources (OBB):
/sdcard/Android/obb/[game_pack]. Heavy files (graphics, levels, sounds) are downloaded here if the game uses them. The folder is accessible without root. - ๐๏ธ Cache:
/sdcard/Android/data/[game_pack]/cache. Temporary files that can be cleared without losing progress.
Example: if you installed Genshin Impact from Play Market, its OBB files will be located in /sdcard/Android/obb/com.miHoYo.GenshinImpact, and save files will be in /data/data/com.miHoYo.GenshinImpact/files. To see the full path of the package, open the game page in Google Play โthe address in the browser will contain its ID (for example, com.miHoYo.GenshinImpact).
โ ๏ธ Attention: The folder /data/ is hidden from a user without root access. An attempt to access it through a standard explorer will result in a "No access" error. Use specialized file managers type Root Explorer or FX File Explorer with superuser mode enabled.
If you need to transfer the game to another phone, just copy the folders obb and data (from /sdcard/Android/) - but only if the same APK is already installed on the new device. Otherwise, the game may not start due to a mismatch of signatures.
2. Where are APK files downloaded during manual installation
If you download a game in format APK not from Play Market, but from third-party sources (for example APKMirror, APKPure or telegram channels), the source file is saved where you specified it in the browser or file manager. By default it is:
- ๐ฅ Downloads folder:
/sdcard/Download/or/storage/emulated/0/Download/. All files downloaded via Chrome, Firefox or the built-in browser will appear here. - ๐ File manager folder: some applications (for example, Files by Google or Total Commander) create their own directories for downloads, for example
/sdcard/Files/. - ๐ Browser cache folder: if the download is interrupted, the incomplete APK may remain in
/sdcard/Android/data/[browser_package]/cache/. For example, for Chrome this is/sdcard/Android/data/com.android.chrome/cache/.
After installation, the APK file can be deleted - it is no longer needed, since the game is already integrated into the system. However, if you plan to reinstall or share the game, please save the APK in a safe place. To do this:
- Download the APK from a trusted source.
- Before installation, copy the file to the cloud (Google Drive, Yandex.Disk) or to your computer.
- Install the game, then check its functionality.
โ ๏ธ Warning: Installing APKs from unknown sources may lead to your device becoming infected with malware. Always check the hash of the file (MD5/SHA-1) on the developerโs website and use antivirus applications like Malwarebytes or Dr.Web.
โ๏ธ Safe APK installation
3. Where are games stored in Android emulators (BlueStacks, LDPlayer, MuMu)
Android emulators on PC (BlueStacks, LDPlayer, MuMu, NoxPlayer) create a virtual device with its own file system. The paths to games in them differ from real smartphones, but the logic is the same: APKs are in one place, data in another. Main directories:
| Emulator | Path to APK | Path to OBB/data | Notes |
|---|---|---|---|
| BlueStacks | C:\ProgramData\BlueStacks\Engine\UserData\Download\ |
C:\ProgramData\BlueStacks\Engine\UserData\SharedFolder\Android\obb\ |
Folder ProgramData hidden - enable the display of hidden files in Windows. |
| LDPlayer | C:\Users\[Your_user]\Documents\LDPlayer\Download\ |
C:\Users\[Your_user]\Documents\LDPlayer\SharedFolder\Android\obb\ |
For multi-instances, the path will contain the instance number (for example, LDPlayer9\). |
| MuMu Player | C:\Users\[Your_user]\Documents\MuMu\Download\ |
C:\Users\[Your_user]\Documents\MuMu\SharedFolder\Android\data\ |
In the emulator settings you can change the path to the shared folder. |
To find game files in the emulator:
- Open the emulator and install the game via Play Market or APK.
- Run File manager inside the emulator (usually found in the menu applications).
- Go to
/sdcard/Android/obb/or/sdcard/Android/data/โthe folders with game data will be here. - On the PC, go to the emulator directory (see table above) and find the corresponding files.
Important: when cloning the emulator or transferring to another PC, be sure to copy the entire data folder (for example, BlueStacks\Engine\UserData\), not just APK. Otherwise, saves and game settings will be lost.
To speed up the loading of heavy games in the emulator, download OBB files separately and place them in the folder obb before installing the APK. This will save time and traffic.
4. How to find hidden folders with games without root access
Many directories with game data (/data/data/, /data/app/) are hidden from a user without superuser rights. However, there are ways to access them without rooting:
- ๐ง Use ADB: through Android Debug Bridge you can copy files from the device to your PC. For example, the command:
adb pull /data/data/[game_package] C:\Backup\will copy the game data to the folder
Backupon the computer. - ๐ฑ File managers with root access: Mixplorer, FX File Explorer or Solid Explorer can open system folders if you enable the appropriate option in the settings.
- โ๏ธ Backup via Titanium Backup: the application creates backups of data and APKs even without root (but with limitations).
- ๐ Transfer via the cloud: some games (for example, Clash of Clans) allow you to synchronize progress with your account Google Play Games or Facebook.
For use ADB:
- Enable USB debugging in the developer settings (
Settings โ About phone โ Build number (press 7 times) โ For developers โ Debugging USB). - Connect your phone to your PC and confirm the trusted device.
- Open a command line in the folder with ADB (download Platform Tools from the site Android Developers) and run the command
adb devicesto check the connection. - Use
adb pullto copy files.
โ ๏ธ Attention: Commands ADB with superuser rights (adb shell su) work only on rooted devices. On standard smartphones you will receive a "Permission denied" error.
How to find the game package for ADB?
Open the game page on Google Play through a browser on your PC. In the address bar there will be a line like https://play.google.com/store/apps/details?id=com.example.game โ here com.example.game there is a package.
5. Transferring games between devices: what and how to copy
If you want to move a game from one Android device to another, it is not enough to copy just the APK. You will need:
- APK file (if the game is not from Play Market).
- OBB folder (if the game uses it) -
/sdcard/Android/obb/[game_pack]/. - data folder (saves and settings) -
/sdcard/Android/data/[game_package]/or/data/data/[game_package]/(requires root).
Step-by-step guide:
- On the old device, find the folders
obbanddata(see sections above). - Copy them to your PC or cloud storage.
- On the new device, install the same version of the game (via Play Market or APK).
- Move the folders
obbanddatato the appropriate directories on the new device. - Restart your smartphone and start the game.
If the game uses online saves (for example, via Google Play Games), just log in to the same account - progress will be updated automatically. For offline games (for example Minecraft or Stardew Valley), you will have to copy the files manually.
| Game type | What to copy | Examples |
|---|---|---|
| Online with cloud saves | APK only (data is synchronized) | Clash Royale, Brawl Stars |
| Offline with local saves | APK + folders obb and data |
Minecraft, Terraria |
| Games with OBB > 1 GB | APK + OBB (data optional) | Genshin Impact, Call of Duty Mobile |
โ ๏ธ Attention: Some games (for example PUBG Mobile or Free Fire) bind saves to the device via IMEI or Android ID. When transferring to another phone, you may need to reset your progress or contact support.
To successfully transfer games between devices, be sure to use the same APK versions. If your new phone has a newer version, the data may not be compatible.
6. Clearing the cache and game data: where everything is
If the game starts to slow down or takes up too much space, you can clear it. Files that can be safely deleted:
- ๐งน Cache:
/sdcard/Android/data/[game_pack]/cache/. Deleting will not affect saves, but will free up space. - ๐๏ธ Temporary files: some games create folders in
/sdcard/[game_name]/(for example, PUBG Mobile stores screenshots and replays here). - ๐ Residual files: after uninstalling the game, its folders may remain in
/sdcard/Android/obb/i/sdcard/Android/data/. They can be deleted manually.
To clear the cache:
- Go to
Settings โ Applications โ [game_name] โ Storage. - Click Clear cache (it's safe).
- If you need to reset your progress, click Clear data (all saves will be deleted!).
For deep cleaning (for example, if the game weighs several gigabytes, but is not completely deleted):
- Delete the game via
Settings โ Applications. - Open the file manager and manually delete the folders:
/sdcard/Android/obb/[game_package]//sdcard/Android/data/[game_package]/ - Reboot the device.
Example: Call of Duty Mobile after deletion, it can leave up to 3 GB of garbage in the memory in the obb and datafolders. They must be deleted manually.
If the game takes a long time to load after clearing the cache, do not worry - it simply downloads the necessary resources again. This is normal for heavy projects like Genshin Impact or Honkai: Star Rail.
7. Problems accessing folders: solutions
Sometimes users encounter errors when trying to open game folders. Common problems and their solutions:
| Problem | Cause | Solution |
|---|---|---|
Folder /data/ does not open |
Absent root access | Use ADB or a file manager with root support |
| OBB files are not unpacked | Damaged archive or version mismatch | Download OBB again from the official source |
| The game does not see the copied data | Wrong path or access rights | Check the package name and folder permissions |
| After transfer the game crashes | Incompatibility of APK and OBB versions | Install the same version of the game that was on the old device |
If you see message "No access to folder" when trying to open /data/data/:
- Make sure that the file manager has root access (in the application settings).
- Try alternative managers: Mixplorer or Root Browser.
- Use ADB to copy files to PC:
adb pull /data/data/[game_package] C:\Backup\
To fix errors with OBB:
- Make sure the file has the correct name (for example,
main.1.com.example.game.obb). - Check the checksum (MD5) of the file - it must match the one specified on the developerโs website.
- Place OBB in the correct folder:
/sdcard/Android/obb/[game_pack]/(without subdirectories!).
FAQ: Frequently asked questions about game files on Android
Is it possible to transfer a game from a phone to a memory card?
Yes, but not all games support this functionality Q Android 6.0+ you can use the function Adoptable Storage (formatting the card as internal memory), but this will slow down the system. An alternative is to manually copy folders obb and data to an SD card and then mount it via FolderMount or Link2SD (requires root).
Why does the game not start after copying OBB?
Probable reasons:
- Mismatch of OBB and APK versions.
- OBB file is damaged or not fully downloaded.
- Invalid file name (must be in the format
main.[number].[package].obb). - There are no permissions for the folder (try manually setting permissions
755or777via ADB).
How to find game saves if it does not use OBB?
Saves can be stored in:
/data/data/[game_pack]/files/(requires root)./sdcard/Android/data/[game_pack]/files/(available without root).- Cloud storage (if the game is synchronized with Google Play Games or Facebook).
To search, use a file manager with a search function by package name.
Is it possible to restore a deleted game with its data?
If you deleted the game, but folders obb and data remained untouched:
- Install the game again (via Play Market or APK).
- Do not launch it right away!
- Restore the folders
obbanddatato the original directories. - Start the game - it should pick up the old data.
If the folders have been deleted, restoration is only possible from a backup (for example, via Titanium Backup or ADB).
Why does the game take up more space than its size in the Play Market?
In Google Play only the size of the APK file is indicated. After installation, the game downloads additional resources:
- OBB files (graphics, sounds, levels).
- Cache (temporary files to speed up loading).
- Updates (some games download patches after the first launch).
For example, Genshin Impact weighs ~150 MB in Play Market, but after installation it takes up >10 GB due to OBB and cache.