Folder "Other" on smartphones Xiaomi Redmi is one of the most mysterious and annoying features of MIUI. It can take up a 5 to 30 GB memory, while the system stubbornly does not show what exactly is stored inside. Users often encounter a situation where free space is running out, and in the section "Storage" there is a huge block "Other"that cannot be removed using standard means.
In this article we will look at 5 proven methods cleaning folders "Other" on Redmi Note 10/11/12, Redmi 9/10, POCO X3/X4 and other models with MIUI 12/13/14. You will learn what files are hidden under this section, how to safely delete them, and what to do if the memory is still not freed. We will also reveal myths about “Other” and explain why some “tips” from the Internet can harm your phone.
What is the “Other” folder on Xiaomi Redmi and why is it growing?
Folder "Other" (or «Other») is collection section, where MIUI drops files that do not fit into standard categories (“Photos”, “Video”, “Audio”, “Applications”). It includes:
- 📁 Application cache (including system ones)
- 🔄 Residual files after uninstalling apps
- 📄 System logs and dumps (error reports)
- 🎮 Game data (saves, temporary files)
- 🔒 Encrypted files (for example, from
Mi Cloud) - 📱 Update files (remains of firmware)
The main problem is MIUI does not provide tools for a detailed analysis of this section, the user sees only the total volume, but cannot understand what exactly is taking up space. Moreover, some of the files. in "For others" locked for deletion without root access, since they are related to the operation of the system.
Why is the folder growing?
- 🔄 Automatic backup (for example,
Mi Cloudcreates hidden copies) - 🎮 Games with large caches (Genshin Impact, PUBG Mobile, Call of Duty)
- 📱 MIUI updates (packages remain
.zipweighing 1–3 GB) - 🗑️ Incorrect removal of applications ("tails" remain in
/data/data)
Method 1: Clearing the application cache (without root)
The most safe and fast method is deletion cache of user and system applications. This will not damage the data, but may free up from 1 to 5 GB memory.
Instructions:
- Open
Settings → Applications → Manage applications. - Tap on the three dots in the upper right corner and select "Sort by size" (to see the heaviest apps).
- Select an application (for example YouTube, Facebook, Mi Video) and click Clear cache.
- System applications (for example
com.miui.gallerymay require confirmation.
Special attention pay attention to:
- 🎵 Music players (Mi Music, Spotify)
- 📺 Video players (MX Player, VLC)
- 🎮 Games (Genshin Impact caches up to 10 GB!)
- 📱 Social networks (TikTok, Instagram)
☑️ What to clear first
⚠️ Attention: Do not clear the application cachecom.android.systemui,com.miui.homeandandroid.process.media- this may lead to interface freezing or resetting the wallpaper.
Method 2: Removing junk files through “Cleaning” (built-in tool)
MIUI has a built-in a tool "Cleaning"that finds and deletes unnecessary files, including part of the content "Other". However, it does not always work effectively - sometimes it requires forced launch.
How to start deep cleaning:
- Open "Security" (shield icon in the application menu).
- Go to "Cleaning" → "Deep cleaning".
- Wait for scanning (may take 1-3 minutes).
- Check all the boxes, especially "Residual files", "Mini app cache" i "Unnecessary APK".
- Click "Clear".
If standard cleaning did not help:
- 🔄 Restart the phone and repeat the procedure.
- 📱 Check the section "Files" → "Categories" → "Other" —sometimes hidden folders appear there after cleaning.
| File type | Can it be deleted? | Potential risk |
|---|---|---|
| Application cache | ✅ Yes | Applications will take longer to load when first launched |
| Residual files (after uninstall) | ✅ Yes | No risk |
System logs (.log, .dmp) |
✅ Yes | May be needed to diagnose errors |
Update files (update.zip) |
✅ Yes | The next update you will have to download again |
Data Mi Cloud (encrypted) |
❌ No | May disrupt synchronization |
⚠️ Attention: If after cleaning the folder "Other" grows quickly again, check Auto-updating applications in Google Play —some games (for example, Genshin Impact) automatically download updates weighing up to 2 GB.
Method 3: Manually deleting hidden folders (via the file manager)
Some of the files in "Other" are stored in hidden foldersthat are not displayed by default. They can be found. through Mi File Explorer or third-party managers (for example, Solid Explorer).
Instructions:
- Install Solid Explorer (or enable the display of hidden files in Mi File Explorer:
Settings → Show hidden files). - Go to the root directory (
/storage/emulated/0/). - Look for folders with names:
.thumbnails(thumbnail images).cache(cache of various applications)Android/dataandAndroid/obb(residual game files)MIUI→debug_log(system logs)Download→ old APK files
.apk or folders of deleted games).Important: Do not delete folders Android, MIUI or DCIM entirely - this will lead to a system crash.
Which folders can be deleted without risk?
Feel free to delete:
- .thumbnails (thumbnails are regenerated automatically)
- Download (if there are no necessary files there)
- Folders of deleted applications in Android/data i Android/obb
- Old APK files (have the extension .apk)
- Logs in MIUI/debug_log (if you are not debugging the system)
Do not touch:
- Android/data/com.xiaomi... (system applications)
- MIUI/backup (backups)
- Alipay, MiPay (financial data)
Method 4: Resetting the partition cache (via Recovery Mode)
If the previous methods did not help, you can try reset the partition cache via Recovery Mode. This will delete your databut will clear the system cache, which can take up to 1–2 GB in "Other".
Instructions:
- Turn off the phone.
- Hold
Power button + Volume upuntil logo Mi. - Select a language (if required).
- Go to
Wipe & Reset → Wipe Cache. - Confirm the action and wait for completion.
- Restart the phone (
Reboot → System). - 📱 The phone became slow after the update MIUI.
- 🔄 Folder "Other" increased sharply (for example, after installing a major update).
- 🎮 Games started fly or long load.
This method is especially useful if:
⚠️ Attention: Do not confuseWipe CachewithWipe Data! The second option (Factory Reset) will delete all your data (photos, contacts, messages).
If after resetting the cache the phone takes a long time to boot (5-10 minutes), this is normal. The system restores the necessary files. Do not interrupt the process!
Method 5: Using ADB for deep cleaning (for advanced)
If you are ready for more complex manipulations, you can use ADB (Android Debug Bridge) to remove hidden files. This method requires connecting to a PC and basic knowledge of the command line.
Instructions:
- Enable "USB debugging" on your phone:
- Go to
Settings → About phone. - Tap 7 times by "MIUI Version"to activate "Developer Mode".
- Return to "Settings", open "Advanced" → "For Developers" and turn on "USB Debugging".
- Go to
Command Line (Windows) or Terminal (Mac/Linux).adb devices
(the device should appear)
adb shell
su
(if you have root access)
cd /data
du -sh * | sort -n
(will show the largest folders)
rm -rf /data/folder_to_be_deleted
(for example, rm -rf /data/local/tmp)
What can be deleted via ADB:
- 📂
/data/local/tmp(temporary files) - 📂
/data/log(system logs) - 📂 Residual files in
/data/data(from remote applications)
ADB is a powerful tool, but dangerous. data-i="298">or data loss or system failure.
What to do if nothing helps?
If after all the manipulations the folder "Other" still takes up a lot of space, the following are possible reasons:
- Virus or malware:
- Check your phone via Malwarebytes or Dr.Web Light.
- Remove suspicious applications (especially from unknown sources).
- File system failure:
- Make a backup and perform factory reset.
- Use
Recovery Mode→Wipe Data(will delete everything!).
- Sometimes MIUI incorrectly calculates the occupied space.
- Check the actual memory status through DiskUsage (application from Google Play).
If the problem is hardware failure (for example, damaged flash memory), then:
- 🔧 Contact the service center Xiaomi.
- 📱 Check the warranty - if the phone is under warranty, repairs may be free.
⚠️ Attention: On some models Redmi (for example, Redmi Note 8 Pro) there is a bug in which the folder "Other" shows non-existent data. In this case, only flashing via Fastboot.
FAQ: Frequently asked questions about the "Other" folder on Xiaomi Redmi
Is it possible to completely delete the "Other" folder?
No, it is impossible to completely remove it - it system partitionwhere MIUI writes the files necessary for work. However, you can significantly reduce its size (up to 1-3 GB) using the methods from this article.
Why does the folder grow again after cleaning?
This happens due to:
- 🔄 Automatic caching of applications (especially games and social networks).
- 📱 Background synchronization
Mi CloudorGoogle Drive. - 📁 Creation of temporary files by the system (logs, dumps).
Solution: clear your cache regularly (once every 1-2 weeks) or disable auto-update of unnecessary applications.
Is it safe to use applications like “SD Maid” or “Files by Google”?
Yes, but with caution:
- ✅ Files by Google —safe, deletes only the cache and unnecessary files.
- ⚠️ SD Maid —requires root access for deep cleaning, without them it works like a regular cleaner.
- ❌ Avoid “magic cleaners” from unknown sources - they may contain viruses.
How to check what exactly is taking up space in “Other”?
Install application DiskUsage or Storage Analyzer from Google Play. They show detailed memory structure, including hidden files. An alternative is to connect the phone to a PC and analyze via WinDirStat (requires enabled debugging). USB).
Will flashing the phone help?
Yes, but this is last resortFlashing via Fastboot or Recovery will completely clear the system, including the folder "Other"However:
- 🔧 Skills required to work with MI Flash Tool.
- 📱 All data will be reset (make a backup!).
- ⚠️ The risk of the phone being “bricked” in case of an error.
We recommend trying all other methods first.