How to create a folder on Xiaomi Redmi: 5 proven ways + secret MIUI chips

Creating folders on Xiaomi Redmi smartphones seems like a simple task β€” until you encounter the nuances of the MIUI shell. Unlike β€œpure” Android, there are tricks: hidden options in the file manager, restrictions on system partitions and even the ability to create folders right on the desktop without additional applications. If you tried to do it through standard means and nothing came out, this article is for you.

We will discuss all the current ways to create folders on Redmi Note 12/13, Redmi 10/11, POCO X5 and other models from 2020-2026, including little-known MIUI chips. Particular attention will be paid to the problems faced by users: why a folder is not created in the root directory, how to circumvent the restrictions on writing to system partitions and what to do if the file manager β€œdoes not see” an external memory card.

Whether you want to simply organize your photos in a gallery or set up a complex document storage structure, there’s a solution here: All the instructions are tested on the latest versions of MIUI 14/15 (including global and Chinese firmware) and adapted to the features of Redmi with different versions of Android (from 11 to 14).

1. Method 1: Create a folder through a standard MIUI file manager

The most obvious, but not always intuitive, method is to use the built-in File Manager (a white-tick blue folder icon) which is stripped down in MIUI compared to Google Files, but is ideal for basic operations, and the key is to know where to look for the options you need.

To create a folder:

  1. Open the Files app (if it is not on the desktop, search through the system search).
  2. Go to the Device section (for internal memory) or SD-card (for external storage).
  3. Click on the three dots in the top right corner and select Create a folder.
  4. Enter the title (e.g. Documents 2026) and press OK.

⚠️ Attention: B MIUI 14+ When creating a folder in the root directory (/storage/emulated/0/) You may have a "can't create a folder" error, which is due to Android security policies. 12+. Solution – Create folders within existing directories (like Download or Documents).

Are there rights to write to the selected section?

Is there enough space on the drive (minimum 50 MB)

Is the "Read Only" mode for SD-map

Is the File Manager Updated to the latest version?-->

If the folder doesn't show up after you've created it, upgrade the screen to swipe down or restart the Files app. In rare cases, cleaning the manager's cache in the app's settings helps.

2. Method 2: Using Google Files for Extended Features

Google Files (or simply Files by Google) offers more flexible tools for working with files than the standard MIUI manager. It is free, weighs less than 10 MB and can:

  • πŸ“ Create folders in any partition (including the root directory on Android 11)+)
  • πŸ” Find duplicates and clean up garbage automatically
  • πŸ“± Manage files on SD-map MIUI
  • πŸ”„ Sort files by type and date in one click

Instructions for creating a folder:

  1. Install Google Files from the Play Market.
  2. Open the app and select the Overview or Memory section of the device.
  3. Put it on the badge. βž• at the bottom of the screen and select Folder.
  4. Please use the name (emojis can be used, for example). πŸ“Έ Photo Vacation) and click Create.

πŸ’‘ Useful tip: Google Files has a Category feature that automatically groupes files by type (images, videos, documents).You can move the entire group to a new folder in one tap, saving time on manual sorting.

Standard MIUI Files

Google Files

Total Commander/Solid Explorer

Other-->

3. Method 3: Creating a folder on the desktop (for application icons)

If you don't want storage for files, but a grouping of application icons (like the social network folder for VC, Telegram and Instagram), MIUI does it differently than other shells. It doesn't have the classic drag-and-drop-and-drop-and-drop-and-drop-and-drop-and-drop-and-drop-and-drive menus instead.

Step-by-step:

  1. Press and hold the icon of any application on the desktop.
  2. In the menu that appears, select Create a folder (or New folder in MIUI 15).
  3. Drag other icons (you can add up to 16 apps to one folder).
  4. Click on the folder name (the default New folder) to rename it.

⚠️ Attention: B MIUI 14+ The folders on the desktop automatically get color lighting depending on the wallpaper. If you don't like this effect, you can turn it off in the theme settings: Topics β†’ Wallpaper settings β†’ Effects of icons β†’ Color of folders.

Action.MIUI 12/13MIUI 14/15
Max. Number of applications in the folder916
Support for nested foldersNo.Yes (App Vault launcher only)
Changing the color of the folderManual (through themes)Automatic + manual
Sorting applications insideOnly manually.Self-sorting by alphabet/frequency of use

Method 4: Creating folders via PC (for advanced users)

If you need to create a complex folder structure (for example, for backups or working with ADB), it is more convenient to do this through a computer. Connect Redmi to your PC via USB and use any file manager (Windows Explorer, Total Commander, Far Manager).

Important nuances:

  • πŸ”Œ Connect the phone in file transfer mode (MTP) (Selected in the notification curtain when connected USB).
  • πŸ“‚ In Windows Explorer, your Redmi will appear as a removable drive (e.g., Redmi Note 12 Pro).
  • πŸ”’ Some system folders (such as Android or MIUI) will not be available for editing.
  • πŸ’Ύ To work with SD-card it must be pre-mounted in the settings of the phone: Settings β†’ Memory. β†’ SD-map β†’ Settings β†’ Format as internal (Warning: This will remove all data from the card!).

Critical information: On Android 13+ (MIUI 14+) phones, when connecting to a PC via USB, you may need to unlock the screen to access files. If the screen is locked, Windows Explorer will not see internal memory.

How to enable debugging over USB for extended access?
1. Activate Developer Mode: Settings β†’ The phone. β†’ Version. MIUI (slip 7 once). 2. Back to Settings β†’ Additionally. β†’ For developers and enable debugging by USB. 3. Connect your phone to your PC and confirm your trust in the window that appears. 4. Now you can use the adb shell to create folders through the command line, for example: adb shell mkdir /sdcard/New Pope

5. Method 5: Automatic folder creation using scripts (for geeks)

If you need to create dozens of folders with a specific structure (for example, to organize projects or archives), you can automate the process using scripts. On Xiaomi Redmi, this works through Termux (Linux emulator) or ADB.

Example of a script for creating nested folders:

#!/bin/bash

Script for creating folder structure for photos by year



base_dir=”/sdcard/Pictures/Archive




years=("2020" "2021" "2022" "2023" "2026")




months=("01_January"02_February"03_March"04_April"05_May"06_June"




"07_July" "08_August" "09_September" "10_October" "11_November" "12_December"





mkdir -p "$base_dir"




for year in "${years[@]}"; do




for month in "${months[@]}"; do




mkdir -p "$base_dir/$year/$month"




done




done




echo "Folder structure created in $base_dir"

To run this script:

  1. Install Termux from the Play Market.
  2. Enter the commands pkg update & pkg upgrade pkg install nano nano create_folders.sh Insert the script above, save (Ctrl)+O and exit (Ctrl)+X).
  3. Make the script executable: chmod +x create_folders.sh
  4. Launch it:./create_folders.sh

⚠️ Note: Scripts in Termux only have access to folders that are allowed for the application (/data, /system) Root rights will be required, which will cancel the warranty on Redmi.

πŸ’‘

If the script doesn’t work, check the path to SD-Some of the firmware on the map. MIUI The internal memory is not installed as /sdcard, how /storage/emulated/0. Clarify the current path with the echo team $EXTERNAL_STORAGE Termux.

6. Solving common problems when creating folders

Even in the simple folder operation on Xiaomi Redmi, users encounter errors, and here are the most common ones and ways to fix them:

Problem.Reason.Decision
"Impossible to create a folder" in the root directoryAndroid 11+ (Scoped Storage)Create folders inside Download, Documents or use Google Files
The folder is created, but disappears after restarting.File Manager cache failureClear the application's cache Files in settings
You can't create a folder on SD-mapThe map is formatted as a portableFormat as internal memory (deletes all data!)
Folder names are displayed in hieroglyphicsFailure of encoding in MIUIRename the folder Latin or reboot the phone

If none of these methods helped, check:

  • πŸ›‘οΈ Is Guest Mode not enabled (limits access to files).
  • πŸ”„ Is the system currently being updated (blocks the recording to disk).
  • πŸ“± Is Safe Mode Activated (disables third-party file managers).

πŸ’‘

On the phones with MIUI Global Stable folder problems are less common than in Chinese (China) ROM) Firmware due to differences in security policies.

7. Secret MIUI chips for working with folders

The MIUI shell hides a few useful features that few people know about:

  1. Quick folder creation from the gallery: Open the Gallery app. Select some photos/video. Slip on More β†’ Move to a new folder. Name the files automatically copied to a new folder in the DCIM directory.

Folder encryption:

In MIUI 14+, you can protect your folder with a password:

  1. Open the files. β†’ Personal.
  2. Choose to Create a Private Folder.
  3. Set a password (other than locking the screen).

⚠️ Note: If you forget your password, it will be impossible to restore access to files in a private folder – even through resetting settings!

Automatic sorting by folder:

Include in Settings β†’ Special Features β†’ Smart file classification. The system will offer to transfer similar files (such as screenshots) to separate folders.

Another hidden possibility is to create folder shortcuts on the desktop.

  1. Open the files and find the folder you want.
  2. Press and hold her icon.
  3. In the menu, select Create a shortcut.
  4. The shortcut will appear on the desktop (but this is not the folder itself, but only a link to it).

FAQ: Answers to Frequent Questions

Can I create a folder in the root directory (/storage/emulated/0/) on Android 13?
Starting with Android 11 (and MIUI 12.5+) Direct entry to the root directory of internal memory is blocked by default. Bypass: Use Google Files β€” it can create folders root bypass. Connect the phone to your PC and create a folder through Windows Explorer. ADB-team (requires debugging by USB): adb shell mkdir /sdcard/Note that even if the folder is created, some applications will not see it due to the limitations of Scoped Storage.
Why not? SD-The map is not created folders, although there is a place?
This is a typical Xiaomi Redmi problem with external drives. Causes and solutions: The card is formatted as portable: In this mode MIUI Solution - format the card as internal memory (all data will be deleted!). β†’ Memory. β†’ SD-map β†’ Settings (three points) β†’ Format as internal. The file system is not supported: MIUI It only works consistently with FAT32 and exFAT. If the card is in NTFS, Reformat it. Mount failure: Reboot your phone or re-extract/paste the card. Sometimes cleaning the app's cache helps.
How to return a deleted folder if it is not in the basket?
V MIUI The file manager basket only stores files for 15 days if the folder is deleted earlier: πŸ” Check backups in Settings β†’ Google β†’ Backup (if synchronization was enabled). πŸ’Ύ Use data recovery software (e.g., DiskDigger or Recuva via PC) and note that the chances of recovery fall if new files are written to your phone. πŸ“± If the file was on SD-connect it to the PC via the card reader and scan with utilities like PhotoRec. ⚠️ Important: Do not install recovery software on the phone itself – it can overwrite deleted data!
Can I create a folder with a dot at the beginning of the name (e.g.,.config)?
Yes, but with reservations: You can't use the standard MIUI File Manager (the system blocks such names). You can use Google Files or Total Commander, but the folder will be hidden (it won't show up without enabling the "Show hidden files" option). With Termux/ADB, no restrictions: mkdir /sdcard/.my hidden folder. To see hidden folders in MIUI, open Files β†’ Settings β†’ Show hidden files.
How to transfer the application to the folder (not on the desktop, but in the application menu)?
MIUI has no nested folders in the app menu (unlike Samsung or Huawei). Alternative solutions: Use search: Swipe down on the desktop and type in the app name β€” it's faster than flipping through the menu. Set up "App Vault": Swipe left on the desktop to open App Vault. Click Set up and add frequently used apps to your favorites. Set up a third-party launcher: Apps like Nova Launcher or Apex Launcher support nested folders in the menu.