Folder โOtherโ** (or Other in English firmware) is one of the most mysterious directories in the memory of Android devices. It takes up gigabytes of space, but is not displayed in the standard file manager, and attempts to delete or open it often end with the โNo accessโ error. Why does this happen?
The fact is that this folder stores system caches, temporary application files, data from corporate MDM solutions (for example, Samsung Knox or Mi Enterprise), as well as the remnants of deleted apps that were not cleaned properly. Manufacturers specifically hide it from users to prevent accidental damage to the system. However, with the right approach, it is possible to access "Other"** and we will show how to do this on devices of different brands.
In this article you will find relevant methods for Samsung, Xiaomi, Huawei and other Android smartphones, including methods using ADBthird-party conductors and connecting to a PC. We will also look at which files can be safely deleted and which should not be touched.
What is the โOtherโ folder and why is it hidden?
Folder "Other"** (in some firmware - misc, other or secure_folder) is system partition that Android reserves for:
- ๐ Application cachesthat were not deleted after uninstallation (for example, remnants of games or instant messengers).
- ๐ Corporate profile data (if the device was used within BYOD or MDM).
- ๐ ๏ธ Temporary update files OS that were not cleared after installation.
- ๐ฑ Hidden manufacturer settings (for example, logs Samsung DeX or Xiaomi Game Turbo).
On some devices (especially Samsung and Huawei) this folder can take up to 10โ15 GB โand this is not always garbage. Some files are critical for the stable operation of the system. For example, it can contain:
- ๐ Encryption keys for Secure Folder (y Samsung) or Private Space (y Xiaomi).
- ๐ก NFC module configurationsif you used contactless payments.
- ๐ฎ Game savesthat are not synchronized with the cloud (for example, in Genshin Impact or Honor of Kings).
โ ๏ธ Attention: Deleting files from the โOtherโ folder without a backup copy can lead to to application failure, data loss or even "brick"** device (permanent inoperability). If you are not sure of the purpose of the file, do not delete it!
Manufacturers hide this folder for a reason: it may contain personal information. data that was not correctly deleted (for example, photos from chats or documents from corporate applications). Therefore, before any manipulations, it is recommended to create a backup copy through adb backup or third-party utilities like Titanium Backup (requires root access).
Method 1: Through a standard file manager (without root)
On some devices, the folder "Other"** can be opened without additional tools, but for this you need to know exact path and enable display hidden files. The instructions are suitable for Samsung, Xiaomi and most smartphones on clean Android (for example, Pixel or Nokia).
Steps:
- Open standard Explorer (for example,
My fileson Samsung orFileson Xiaomi). - Go to the root directory (
/storage/emulated/0/). - Tap on the three dots (โฎ) in the upper right corner and select
SettingsโShow hidden files. - Go back to the root folder and try to find the directories:
Android/obb/other/Android/data/other/misc/(on some firmware)
If the folder is not displayed, try an alternative path:
/storage/emulated/0/Android/data/com.android.providers.media/other/
On Samsung c One UI sometimes it helps to go through My files โ Categories โ Others files. However, in most cases the system will block access with a message "No permissions"**. In this case, proceed to the following methods.
Enable display of hidden files
Create a backup copy of important data
Charge the phone at least 50%
Install a file manager with root access (if you plan to use root)
-->
Method 2: Using ADB (without root, but with debugging)
ADB (Android Debug Bridge) is a debugging tool that allows you to manage the Android file system through a computer. The method works on any devices, but requires enabling developer mode And USB debugging.
Step-by-step guide:
- Enable the mode developer:
- Go to
Settings โ About phone โ Build number. - Tap
Number assembly7 times until a notification appears"You have become a developer"**.
- Go to
- Activate USB debugging:
- Go back to
Settings โ System โ For developers. - Enable switch
USB debugging.
- Go back to
- Connect the phone to the PC:
- Use the original cable (not all USB cables support data transfer!).
- On the phone, select the mode
File transfer (MTP).
- Install ADB on your computer:
- Download Platform Tools from Google.
- Extract the archive into a folder
C:\platform-tools\.
- In Windows: click
Win + R, entercmdand go to the folder withadbcommand:cd C:\platform-tools\ - Enter the command to check the connection:
adb devices(the name of your device).
- Access the "Other" folder:
adb shellls /storage/emulated/0/Android/other/If the folder exists, you will see its contents. To copy files to your PC:
adb pull /storage/emulated/0/Android/other/ C:\other_files\
โ ๏ธ Attention: Commandsadb shell rmoradb shell rmdirto delete files from the folder โOtherโ can lead to unstable operation of the system. If you are not sure of the purpose of the file, first copy it to your PC and analyze it using JADX (APK decompiler) or Hex editor.
If during execution command ls you see a message Permission denied, which means access is blocked at the firmware level. In this case, you will need root or alternative methods (see the next section).
What to do if ADB does not see the device?
If command adb devices does not show your smartphone:
1. Check if the drivers are installed (download for Windows Google USB Driver).
2. Try another USB port (preferably USB 3.0).
3. Restart your phone and PC.
4. Enable the option in the developer settings Cancel USB debugging authorization, then connect the device again.
Method 3: Using a file manager with root access
If your device has one root access, you can use specialized explorers such as Root Explorer, Solid Explorer or FX File Explorer. These applications allow you to view and edit system folders, including "Other"**.
Instructions:
- Install one of the explorers with root support:
- Root Explorer (paid, but reliable).
- Solid Explorer (free version with limitations).
- FX File Explorer (requires an additional module for root).
/data/media/0/Android/other/
or (on some firmware):
/storage/emulated/0/Android/obb/other/
- Do not delete files with extensions
.key,.dbor.cfgโthis may be system settings. - Copy suspicious files to your PC before deleting.
| File type | Can I delete? | Risks |
|---|---|---|
.nomedia |
Yes | Responsible for hiding multimedia in the gallery. Deleting will not harm. |
.tmp, .temp |
Yes (usually) | Temporary files, but some may belong to system processes. |
.db, .sqlite |
No | Databases of applications or systems. Removal will lead to failures. |
.apk |
Conditional | Remains of deleted applications Can be deleted, but some may be update caches. |
.odex, .vdex |
No | Optimized Dalvik files. Critical for application operation. |
If you use Magisk to get root, it is recommended to temporarily disable Magisk Hide before working with system folders - this will prevent conflicts c SafetyNet.
Before deleting files from the "Other" folder, check their modification date. If the file has not been edited for more than a year, the system most likely does not need it. However, even in this case, it is better to make a backup copy first.
Method 4: Connect to a PC via MTP (alternative method)
If ADB doesnโt help, and you donโt have root access, you can try to access the folder through a computer in MTP (Media Transfer Protocol) mode. This method does not work on all devices, but sometimes it allows you to see hidden directories.
What you will need:
- ๐ฅ๏ธ Computer with Windows, macOS or Linux.
- ๐ฑ Original USB cable (important for a stable connection).
- ๐ Explorer with support for hidden files (for example, Total Commander or Far Manager).
Step-by-step guide:
- Connect your phone to the PC and select the mode
File transfer (MTP). - On your computer, open
This computer(Windows) orFinder(macOS). - Go to the folder of your device (usually displayed as
[Model name]). - In the address bar, enter the path:
\\?\Volume{GUID}\Android\other\(where
GUIDis a unique identifier your device, you can find it throughDisk Managementin Windows). - If the folder is not displayed, try the alternative path:
\\?\Volume{GUID}\data\media\0\Android\other\
On macOS to access hidden folders in Finder use the keyboard shortcut Cmd + Shift + . (dot). In Linux (for example, Ubuntu) connect the device and use the command:
gvfs-mount -li | grep mtp
then navigate to the mounted directory via Nautilus or Dolphin.
โ ๏ธ Attention: In the latest versions of Android 12+ and Android 13 Google has tightened restrictions on access to system folders via MTP. If your device is running a new OS, this method may not work.
Method 5: Through TWRP Recovery (for advanced users)
TWRP (Team Win Recovery Project) is a custom recovery that allows you to get full access to the Android file system, including hidden partitions. The method is suitable for users who have already installed TWRP (for example, for flashing custom firmware). ROM).
Warning: Incorrect actions in TWRP can lead to data loss or firmware damageUse this method only if you are confident in your actions.
Instructions:
- Turn off the phone and hold down the button combination to enter recovery:
- For Samsung:
Power + Volume up + Bixby. - For Xiaomi:
Power + Volume up. - For Google Pixel:
Power + Volume down.
- For Samsung:
Advanced โ File Manager./data/media/0/Android/other/
- Select the desired files.
- Click
Copyand specify the target folder (for example,/external_sd/backup/). - B menu TWRP select
Mount โ Enable MTP. - Connect the device to the computer - the folders will become available for viewing.
B TWRP you can also connect the phone to the PC via ADB Sideload or MTP in recovery mode. To do this:
If you plan to delete files via TWRP, be sure to create a backup copy of the partition /data (option Backup in the main menu). This will allow you to restore the system in case of an error.
TWRP gives maximum access to the file system, but requires preliminary installation of a custom recovery. Without experience with firmware, it is better to use other methods.
What to do if the โOtherโ folder takes up too much. space?
If the folder "Other"** has grown to several gigabytes, this may be due to:
- ๐๏ธ Incorrectly deleted applications (caches and data remain).
- ๐ฑ OS updatesthat were not cleared after installation.
- ๐ Corporate profiles (if the phone was used at work).
- ๐ฎ Game caches (for example, Call of Duty Mobile or PUBG can leave gigabytes of data).
How to clean the folder safely:
- Use the built-in cleaning utility:
- On Samsung:
Settings โ Device maintenance โ Memory โ Clear. - On Xiaomi:
Settings โ Memory โ Cleanup.
- On Samsung:
- Delete cache applications:
- Go to
Settings โ Applications โ [Select an application] โ Memory โ Clear cache. - Pay attention to games and instant messengers - they often leave the most garbage.
- Go to
- Check corporate data:
- If the phone was used at work, go to
Settings โ Accounts โ Delete work profile.
- If the phone was used at work, go to
- SD Maid (requires root for deep cleaning).
- Files by Google (shows "junk" files without root).
- Turn off the phone and go into recovery (see method with TWRP).
- Select
Wipe cache partition. - Reboot the device.
If the folder "Other"** still takes up a lot of space, try resetting the cache via recovery:
โ ๏ธ Attention: Do not confuseWipe cache partitionsFactory Reset! The first option clears only temporary files, and the second deletes all user data.
FAQ: Frequently asked questions about the โOtherโ folder on Android
Is it possible to completely delete a folder? โOtherโ?
No, this is a system directory, and completely deleting it will result in the device not working. You can only delete individual files if you are sure of their purpose.
Why does the "Other" folder appear again after cleaning?
This is normal behavior of the Android system constantly creating temporary files for applications and updates. and caches. Regular cleaning through built-in utilities will help control its size.
How to find out which files are taking up space in the โOtherโ folder?
Use memory analysis applications, such as DiskUsage or Storage AnalyzerThey show the distribution of space by. folders and file types.
Is it safe to use root to access a folder?
Root gives full control over the system, but also opens up opportunities for errors. If you are an inexperienced user, it is better to use methods without root (for example, ADB).
Can the "Other" folder contain viruses?
Theoretically, yes, if you installed applications from unverified sources. Check the folder with an antivirus (for example, Malwarebytes or Dr.Web).