How to view hidden photos in the gallery Xiaomi: all the ways to MIUI 12-14

Have you accidentally hidden important photos in the Xiaomi gallery or suspect that someone hid files from your eyes? MIUI has several built-in mechanisms for hiding media files β€” from the standard feature β€œHidden Album” to system folders that do not appear in normal mode. In this article, we will discuss all the current ways to find and restore access to hidden photos on Xiaomi, Redmi and POCO smartphones without using root rights or complex technical manipulation.

It is important to understand that hidden files can be located in different places depending on the version of MIUI (12, 13 or 14) and the device model. For example, on the Xiaomi 13 Pro, the search algorithm will differ from the Redmi Note 10 due to differences in the gallery interface. We will look at the universal methods that work on most devices, and also point out the nuances for specific lines.

If you are trying to find files that are not hidden by you, consider: MIUI Does not provide tools to bypass the password for hidden albums without knowledge PIN-All of the methods described below only work for files hidden through standard system functions or accidentally moved to system folders.

The most obvious way to hide photos in Xiaomi is to use the built-in Hidden Album feature, which is available in all versions of MIUI and does not require installing additional applications, to find files hidden in this way:

  1. Open the standard Gallery app (an icon with multi-colored squares).
  2. Slip along three horizontal lines (menu) in the lower right corner.
  3. Select Hidden Album (may be called Private Safe on global firmware).
  4. Enter. PIN-code, pattern lock, or use a fingerprint if the album is protected.

If you haven't set a password for a hidden album, the system can request it to be created the first time you log in, in which case try other ways from this article - maybe the files were hidden differently.

⚠️ Note: On some models (e.g, POCO F4) The hidden album may not be on the gallery menu, due to customized firmware. In this case, use the file manager method (section 3).

In MIUI 14, the hidden album interface has been updated to integrate with the Safe Folder function. If you don't find the old version, check out:

  • πŸ“ Settings β†’ Confidentiality β†’ Safe folder
  • πŸ”’ The album may have been moved to Google Photos β†’ Library β†’ Utilities. β†’ Locked folder (if synchronization is enabled)

2. Search through system folders (without root)

Photos hidden through standard MIUI functions are not physically deleted from the device, but are moved to special system directories. These folders are not displayed in the gallery, but can be accessed through the file manager.

Type of hidden filesThe way to the folderNotes
Hidden through the gallery/storage/emulated/0/MIUI/Gallery/cloud/private/You need to enable the display of hidden files in the file manager settings
Locked in the Safe Folder./storage/emulated/0/Android/data/com.miui.gallery/files/Private/Access only after entering a password in the Gallery app
Hidden through "Double Apps"/storage/emulated/0/Android/data/com.miui.dualapp/Relevant for files hidden in cloned messengers
Cash miniature/storage/emulated/0/Android/data/com.miui.gallery/cache/Small copies of deleted photos can be stored

To see these folders:

  1. Open Files (the standard file manager of Xiaomi).
  2. Slip on three dots in the top right corner β†’ Settings β†’ turn on Show hidden files.
  3. Go through one of the above paths (you can copy the path and paste the manager in the search bar).

Enable the display of hidden folders in the file manager

Check for backups in Mi Cloud

Make sure the device has enough charge (minimum 30%)

Download an alternative file manager (e.g. Solid Explorer) without access-->

If the folders are empty or missing, try another method. On some devices (such as Xiaomi 12T), the paths may differ due to the features of the firmware.

3. Use of alternative galleries

The standard MIUI gallery may not display files hidden by third-party applications or system features, and alternative galleries that ignore MIUI limitations will help:

  • πŸ“Έ Google Photos – shows all media files, including those hidden by the system (but not those that are password protected).
  • πŸ–ΌοΈ Simple Gallery – has the function of scanning hidden folders and support for passwords.
  • πŸ” A+ Gallery – displays files from system directories not available in the standard gallery.

Instructions for Google Photos:

  1. Install an app from the Play Market.
  2. Open it and wait for the synchronization to complete.
  3. Put it on your avatar β†’ Recycle Bin (sometimes hidden files get there).
  4. Go to the Library β†’ Utilities β†’ Locked folder (if synchronization was configured).

⚠️ Note: When the alternative galleries are first launched, they may request permission to access the storage. Grant all the rights requested, otherwise hidden files will not be displayed.

If you use Simple Gallery, check out the Show Hidden Files setting in the app menu, which allows you to see media files from folders that start from a dot (e.g.,.nomedia).

Standard MIUI

Google Photo

Simple Gallery

Another (I will write in the comments)-->

4.Recovery through Mi Cloud backups

If the photos were hidden long ago and you don't remember exactly how it happened, check backups in Mi Cloud. Even if the files were deleted from the device, they could have been saved to the cloud.

  1. Open your Settings β†’ Accounts β†’ Mi Cloud
  2. Make sure that the gallery sync function is enabled.
  3. Go to the Gallery β†’ Albums β†’ Cloud (or Cloud in Russian firmware).
  4. Check the hidden or private folders.

If sync is disabled, turn it on and wait for the process to be completed (may take several hours depending on internet speed).Please note that Mi Cloud only provides 5GB of free storage - if the limit is exhausted, old backups could have been deleted.

To recover deleted files:

  1. Go to i.mi.com and log in.
  2. Select Gallery β†’ Recycle Bin (files are stored there for 30 days).
  3. Mark the desired photos and click Restore.
What if Mi Cloud doesn’t sync photos?
If sync is 0% or not complete, try: 1. Reboot the device. 2. Enable data transfer over the mobile network (Settings) β†’ SIM-maps and mobile networks β†’ Transfer of data β†’ Enable for Mi Cloud. 3. Clear the Mi Cloud app cache (Settings) β†’ Annexes β†’ Application management β†’ Mi Cloud β†’ Clear the cache. 4 Install the latest version of Mi Cloud from the Play Market (sometimes the built-in version becomes obsolete).

5. Search through ADB (for advanced users)

If standard methods didn't work, you can use Android Debug Bridge (ADB), a low-level file system access tool that doesn't require root rights, but requires command-line work.

  • πŸ–₯️ Computer with Windows/macOS/Linux
  • πŸ“± Cable USB (preferably original)
  • πŸ”§ Installed drivers ADB Android platform SDK

Step-by-step:

  1. Turn on Developer Mode on your smartphone: go to Settings β†’ About Phone and tap 7 times on the MIUI version.
  2. Return to Settings β†’ Additional β†’ For developers and enable USB debugging.
  3. Connect your phone to your computer and confirm your trust in the device.
  4. Open the command prompt (or Terminal on macOS/Linux) and do:
adb shell


su -c "find /storage/emulated/0/ -name '.jpg' -o -name '.png' | grep -i private"

This command recursively searches for all files with.jpg and.png extensions in folders containing the word "private." If you're looking for a video, add -o-name '*.mp4'.

⚠️ Attention: Teams ADB Do not delete or modify files with.db,.xml or no extensions, this can cause a failure in the gallery.

If the command returns the path to the files, copy them to the computer:

adb pull /path/to/file/on/phone C:\folder\on\computer

adb backup -f backup.ab -apk -obb -shared -all

This will save a copy of all applications and their data on the computer.-->

6. Checking folders with a.nomedia tag

Files named.nomedia tell Android that the folder doesn't need to be scanned for media, and many apps (including messengers and some versions of MIUI) use this mechanism to hide files, and to find folders like this:

  1. Open the file manager and enable the display of hidden files.
  2. Go to the root directory of internal memory (/storage/emulated/0/).
  3. Manually or through search, find files with the name.nomedia.
  4. Delete or rename these files (e.g., nomedia), then restart the device.

After the reboot, the standard gallery will scan the folders again and display previously hidden files. Note that some system folders (e.g. /Android/data/) may recreate.nomedia after restarting the relevant applications.

Typical places where.nomedia can be located:

  • πŸ“ /DCIM/.thumbnails/ β€” photo-picture
  • πŸ“ /Pictures/Screenshots/ β€” screenshot
  • πŸ“ /WhatsApp/Media/ β€” media
  • πŸ“ /Telegram/Telegram Images/ β€” Telegram photo

7. Recovery of deleted hidden photos

If you suspect that files were not just hidden but deleted, try recovering them with specialized utilities. On Xiaomi, you can do this without root rights, but with restrictions:

AnnexOpportunitiesLimitations
DiskDiggerScans internal memory for deleted filesThe free version does not restore the photo in full resolution.
Recuva (for PC)Deep scanning of the connected deviceRequires to connect the phone to the computer in storage mode
MIUI Hidden Files RecoverySpecializes in files hidden by MIUIIt doesn’t work on all models (e.g., Xiaomi 13 does not support)

Instructions for DiskDigger:

  1. Install an app from the Play Market.
  2. Run a full scan (may take 1-2 hours).
  3. Mark the files found and click Restore.
  4. Save the restored photos to a new folder (not to the system partition!).

⚠️ Note: Do not save recovered files to the same partition from which they were deleted.This may lead to overwriting of the remaining data fragments and make it impossible to continue recovery.

If files were deleted long ago, the chances of recovery are minimal – Android can overwrite memory sectors with new data, in which case only a backup to Mi Cloud or another device will help.

πŸ’‘

The faster you start recovering from deletion, the better the chances of returning files, the optimal time is the first 24 hours.

Frequent Questions (FAQ)

Can I see hidden photos if I don't know the password for the hidden album?
No, MIUI doesn't provide legal ways to bypass the password on a hidden album. If you forget the password, the only option is to reset the phone to factory settings (all data will be deleted). On some models (for example, Redmi Note 11), the password can be reset through the Mi Account if it was tied.
Why did the MIUI update disappear from the photos?
For major updates (e.g., from MIUI 12 to MIUI 13), the system folder structure may change. Check: New Hidden Album Location in the Gallery. /MIUI/Gallery/cloud/private/ via file manager. Sync settings with Mi Cloud - sometimes files are transferred there automatically. If files are not found, try rolling back to the previous version of MIUI via Settings β†’ About Phone β†’ System Update β†’ Three Dots β†’ Select Service Package.
How do you hide photos so they can’t be found using standard methods?
For maximum privacy: Use a Secure folder (Settings β†’ Privacy) with a Mi Account attached. Install a third-party application like KeepSafe or Vaulty with file encryption. Move files to an encrypted microSD card (if the device supports); archive photos in ZIP with a password and delete the originals. Remember that even these methods do not provide a 100% guarantee – when you physically access the device, an experienced user can retrieve data.
Can you hide photos from specific applications (e.g., Watsap)?summary> Yes, for this: Move the photo to the folder where there is a.nomedia file (e.g., create /Pictures/Private/ and add an empty.nomedia file there). Use the dual applications function in MIUI to create a separate gallery profile without accessing hidden files. In the settings of a specific application (e.g. WhatsApp), disable access to storage: Settings β†’ Applications β†’ Permissions β†’ Storage.
Why do hidden photos take up space on the device if you can’t see them?
Hidden files physically remain on the device - they just don't show up in the gallery interface. To make space: Find files through the file manager (section 2 of this article) and delete them manually. Use Settings β†’ Storage β†’ Cleanup to find large files. Move files to a microSD or to the cloud, then delete the originals. Note that some system hidden files (such as gallery cache) are not recommended to be deleted - this can cause app malfunctions.