Creating folders on Xiaomi smartphones is a basic operation that can cause questions for beginners because of the shell features MIUI. Unlike pure Android, it has its own nuances: hidden system directories, limitations on writing to certain sections and a unique file manager. Even experienced users sometimes face problems when trying to organize files in the Internet. /storage/emulated/0/ or SD-map.
In this article, we will analyze all the current ways to create folders on Xiaomi, Redmi and other devices. POCO steerable MIUI 14 Android 13/14. You will learn how to work with built-in conductor, third-party applications, and how to bypass system constraints through ADB We'll focus on common errors, like when a folder is not created on a computer. SD-The card or disappears after rebooting.
The material will be useful to owners of new flagships (Xiaomi 14 Ultra, Redmi K70 Pro) and users of budget models (POCO M6 Pro, Redmi Note 12).
1. Create a folder through a standard MIUI conductor
The easiest way is to use the Files by Google file manager (or Files by Google if installed by default), which works on all Xiaomi devices without any additional applications.
Open Explorer (the folder icon on the home screen or in the application menu). At the top of the screen, select the section where you want to create the folder:
- π Internal memory β for files, mainly storage (/storage/emulated/0/)
- πΎ SD-map - if it is connected (path) /storage/XXXX-XXXX/)
- βοΈ Cloud β for Mi Cloud or Google Drive (requires authorization)
Click on the three dots in the upper right corner and select Create β Folder. Enter the title (e.g. Documents 2026) and confirm. Folder names in MIUI cannot contain characters /\: *? < > | - the system will automatically delete them.
β οΈ Note: If you create a folder on SD-In the card, make sure the card is formatted as a portable storage, not as an internal memory. MIUI Can restrict access to files after card extraction.
βοΈ Checking before creating a folder
2. Alternative file managers: Total Commander, FX File Explorer
Xiaomiβs built-in Explorer isnβt always convenient β for example, it doesnβt show hidden files by default and doesnβt support it. FTP-Alternative managers such as Total Commander or FX File Explorer offers more features:
- π View hidden folders (such as.thumbnails or Android/data)
- π Support for cloud services (Yandex.Disk, Dropbox)
- π Built-in archiver for ZIP/RAR
- π₯οΈ Remote management via WebDAV or FTP
To create a folder with Total Commander:
- Open the app and go to the directory you want (e.g. /storage/emulated/0/Download/).
- Click on the + icon in the bottom panel or select Create β Directory in the menu.
- Enter the folder name (e.g. Projects Work) and click OK.
The advantage of third-party managers is that they bypass some of the limitations of MIUI. For example, you can create a folder in /Android/obb/ using FX File Explorer, whereas a standard conductor does not allow this.
3. creating folders through a computer (MTP, ADB, Fastboot)
If you want to create a folder for system purposes (like backups through TWRP), it's more convenient to do it from a computer. There are three ways to connect:
| Method | Tools required | Limitations | Example of team |
|---|---|---|---|
| MTP (Media Transfer Protocol) | USB cable, PC with Windows/macOS/Linux | No access to system folders (/data/, /system/) | Drag files in Windows Explorer |
| ADB (Android Debug Bridge) | adb from Platform Tools, enabled debugging over USB | Developer rights are required, but no root is required. | adb shell mkdir /sdcard/ New folder |
| Fastboot | fastboot, unlocked bootloader | For system partitions only, high risk | Not applicable to user folders |
For most tasks, MTP is sufficient:
- Connect Xiaomi to your computer via USB-cable.
- On your phone, select File Transfer Mode (not Charging).
- Open This Computer on PC β Find a Xiaomi Device
- Go to the directory you want (e.g. Internal storage β Download) and create a folder through the context menu.
β οΈ Note: When connecting through MTP Windows may not show some folders (for example, Android/data). It's a limitation of Android, not a bug. ADB root.
How to enable debugging by USB on Xiaomi
4. Features of working with SD-maps on Xiaomi
Xiaomi users often face problems when creating folders on the SD-It has to do with how you map. MIUI It's handling external drives. Here's the key:
- π If the card is formatted as internal memory, MIUI It encrypts it and binds it to the device, and when it's extracted, the files will be unavailable on another phone.
- π« Some apps (such as WhatsApp) cannot store data on the Internet. SD, Even if it is connected as a portable storage device.
- π Folders created on SD via PC, may not be displayed in the conductor MIUI before rebooting.
To create a folder on SD-map:
- Format the card as a portable storage (Settings) β Warehouse β SD-map β Settings β Formatting as a portable).
- Use MIUI Explorer or Total Commander, which updates the file system cache correctly.
- Avoid long folder names (more than 30 characters) β this can cause mounting errors.
If the folder on the SD disappears after the reboot, check the mounting settings in /system/etc/vold.fstab (root required). Often the problem is solved by reformatting the card to FAT32 instead of exFAT.
π‘
Before formatting SD-Maps as internal memory make backup of data β the process is irreversible and will delete all files.
5 Automation: Creating folders via Tasker or Termux
For advanced users who want to automate folder creation, tools like Tasker or Termux can be used, for example, to set up a task that will create a folder with a current date each month for backups.
Example of Termux script (requires installation via F-Droid):
termux-setup-storage
mkdir -p ~/storage/shared/backups/$(date +%Y-%m)
echo "Folder created: ~/storage/shared/backups/$(date +%Y-%m)"This script will create a folder of the form Backup/2026-05 in internal memory.
In Tasker, the algorithm would be:
- Create a new task (Task β + β File β Make Dir).
- Specify a path, for example /storage/emulated/0/Auto-created/.
- Add a time trigger or event trigger (such as a Wi-Fi connection).
β οΈ Note: Termux uses different paths to storage than standard ones. ~/storage/shared/, not /sdcard/.
π‘
Automating folder creation is useful for backups, sorting downloads, or organizing files by date, but root rights are required to work with system directories (/data/).
6 Problem Solving: The folder is not created or disappears
If the folder is not created or disappears, check the following points:
| Problem. | Possible cause | Decision |
|---|---|---|
| The folder is not created on SD-map | The card is formatted as internal memory or damaged | Reformat as portable storage or check for errors (chkdsk on PC) |
| The folder disappears after rebooting | MIUI clears cache or mounts SD with errors | Turn off optimization in Settings β Battery β Optimize MIUI |
| No permission to create a folder in /Android/data/ | Android (Scoped Storage) Limitations | Use ADB or root to bypass restrictions |
| MIUI Explorer does not show the folder created | File system cache not updated | Restart your device or use a.nomedia file for hidden folders |
For diagnosis, it is useful to check the logs through ADB:
adb logcat | grep -i "mkdir\|folder\|storage"This will show the errors associated with creating catalogs.
If the problem persists, try resetting your storage settings (Settings β Applications β Application Management β Three Points β App Resets).This wonβt delete files, but will reset access permissions.