Have you ever tried to create an untitled folder on Android, but the system stubbornly required you to enter at least one symbol? This is not a whim of the developers - the limitation is built into most file managers by default. However, you can get around it in several ways, from simple tricks with spaces to using system commands through ADB or Termux.
In this article we will look at 5 proven methodsincluding hidden Unicode characters, modification via PC and even manual editing of the database MediaStore. It is important to understand that not all methods are equally safe: some may lead to failures in displaying files or conflicts with applications. We will explain in detail the risks and nuances of each approach so that you can choose the best option for your smartphone model - be it Samsung Galaxy with a shell One UI or Google Pixel on pure Android.
Before start, keep in mind: folders without names may disappear from the interface after a system reboot or update. This is not a bug, but a feature of processing empty labels in Android. If you need a truly "invisible" folder, consider alternatives like hidden directories (with a period at the beginning of the name) or encrypted containers.
Why doesn't Android allow you to create folders without a name?
At the file system level (for example, ext4 or F2FSused in Android) a folder without a name technically possible. The problem lies in the abstraction layer:
- ๐ฑ File file restrictions managers: Applications like Files by Google or Mi File Manager block the creation of empty names by default to avoid user confusion.
- ๐๏ธ MediaStore: Android's media indexing database ignores directories without readable tags, causing them to "disappear" from the gallery and other applications.
- ๐ Compatible with FAT32/exFAT: External drives (such as SD cards) are often formatted on these file systems, where a folder without a name can cause mounting errors.
Interestingly, in Windows or Linux you can create an untitled folder through the terminal, but Android adds an additional layer of checks. For example, even if you enter in the name field non-breaking space (Unicode character U+00A0), some managers will still substitute a standard name like "New Folder".
โ ๏ธ Attention: Folders with "empty" names (consisting of non-printing characters) may become unavailable for backup via Google Drive or Samsung Cloud. Before experiments, copy important data to your PC.
Method 1: Using a non-breaking space (the simplest)
This method works in 80% of cases and does not require root access. The idea is to trick the system by inserting into the name field invisible characterwhich is technically not a blank:
- Open any file manager (for example, Solid Explorer or FX File Explorer).
- Click "Create a folder" (
New folderโFolder). - In the name field hold your fingeruntil the cursor appears, then insert one of these characters:
- ๐น Non-breaking space: copy it from here โ
(between the quotes there is a symbol, not a space!) - ๐น Zero-Width Space (U+200B):
โ - ๐น Soft Hyphen (U+00AD):
ยญ
- ๐น Non-breaking space: copy it from here โ
ADB or PC. will appear as a folder with an "invisible" name.If the character is not pasted via the clipboard, try using a Unicode-enabled keyboard (for example Gboard with special characters enabled. On some devices (for example Huawei c EMUIit may be possible). required disable name checking in the file manager settings.
| Symbol | Unicode | Visibility in manager | Works on SD card |
|---|---|---|---|
| Non-breaking space | U+00A0 | Invisible | Yes |
| Zero-Width Space | U+200B | Invisible | No (mounting error) |
| Soft Hyphen | U+00AD | Invisible | Yes |
| Left-to-Right Mark | U+200E | Invisible | Yes |
โ ๏ธ Attention: On devices with Android 13+ and a file system F2FS (for example, Samsung Galaxy S23), folders with Zero-Width Space may cause applications to freeze when scanning storage. Use only non-breaking space.
Method 2: Creation via ADB (for advanced users)
If your smartphone supports USB debugging, you can create a folder without a name directly through the command line. This method is guaranteed to work on all versions of Android, but requires a connection to a PC:
- Turn on
Developer modeon your phone: go toSettings โ About phone โ Build numberand tap on it 7 times. - Activate
USB debuggingin the developer menu. - Connect your phone to the PC, install ADB drivers and open the terminal.
- Enter the commands:
adb shellmkdir //sdcard/""Here
""is an empty line. To create a folder with a non-breaking space, use:mkdir //sdcard/" "
To check the result, run:
ls //sdcard/ | grep -a ""
The flag -a will show all files, including hidden ones. The folder will appear as an empty line in the output.
Install Platform Tools on PC
Enable developer mode on the phone
Activate USB debugging
Connect the phone with the original cable-->
On some firmware (for example, ColorOS from Oppo/Realme) you may need to permission to access storage via ADBTo do this, after connecting, do:
adb shell sm set-install-location 0
And restart the device.
Method 3: Editing via Termux (without a PC)
If you do not have access to a computer, you can use the terminal directly on your phone using the application Termux. This method is suitable for devices without root access, but requires caution:
- Install Termux from F-Droid (the version from Google Play is outdated).
- Update packages:
pkg update && pkg upgrade - Install the utility
termux-setup-storage:termux-setup-storageand provide access to the storage.
- Go to the root directory of the storage:
cd ~/storage/shared - Create a folder with a non-breaking space:
mkdir " "
To see the created folder, use command:
ls -la | grep -a " "
Please note that in Termux Unicode characters may not be displayed correctly. If the folder is not visible, try creating it with a different symbol, for example Left-to-Right Mark (U+200E):
mkdir "โฌ"
If Termux does not see the command grep, install it via pkg install grep. For convenience, add a line ~/.bashrc line alias ls='ls -la'to always see hidden files.
Method 4: Manually editing the MediaStore database
This method requires root access designed for experienced users. It allows you to โtrickโ the system into displaying a folder as empty, although at the file system level it will have a technical name.
Working principle:
- Install SQLite Editor or Root Browser.
- Go to
/data/data/com.android.providers.media/databases/external.db. - Open the table
filesand find the entry with_datacorresponding to your folder. - Change the field
titleto an empty line or non-breaking space. - Restart the device.
- ๐จ Data loss: Incorrect editing
MediaStorecan lead to the disappearance of files from the index. - ๐ Reset on update: After updating Android, the database is recreated and the changes will be lost.
- ๐ฑ Conflicts with applications: Some apps (for example, Google Photos) may stop seeing the folder.
- ๐ Folders with a dot: Any directory whose name begins with a dot (for example,
.secret) is hidden by default on Unix systems. To see it, you need to enable showing hidden files in the manager. - ๐ Encrypted containers: Applications like Cryptomator or VeraCrypt create virtual disks that are mounted only after entering a password.
- ๐ System directories: Folders like
/data/local/tmpare available only throughADBand are not displayed in standard managers. - ๐ Cloud storage with private links: Upload files in Google Drive or Mega, then delete them from the device, leaving only the link in a secure note.
- ๐ Folder disappeared after reboot: This means that the file manager or
MediaStoreignored it because of the โincorrectโ name. Solution - use a non-breaking space instead of a completely empty name. - ๐ You cannot move files to the folder: On some firmwares (for example, Flyme from Meizu) operations with folders whose names contain Unicode characters are blocked. Solution - temporarily rename the folder to something like
temp, move the files, then return the empty name. - ๐ The folder is duplicated after connecting to the PC: This is due to differences in name handling between MTP (Android File Transfer Protocol) and Windows/macOS. Solution - Connect. via ADB or use FTP server (for example, MiXplorer).
- ๐ Error "Invalid file name": Found on devices with Android 11+ i
Scoped Storage. Solution - create a folder via Termux or ADBas described in Method 3.
After this, the folder will be displayed without a name in most applications, including the gallery. However, there are risks:
โ ๏ธ Attention: On devices with Android 12+ and functionScoped StorageDirect editingMediaStoremay cause system processes to crash. Before experiments, create a backup viaadb backup.
Method 5: Alternatives - hidden folders and encryption
If you need not so much a folder untitledbut invisible for prying eyes, consider more reliable ones alternatives:
The advantage of these methods is that they does not break the logic of the file system and work stably even after updates. For example, a folder .nomedia is not only hidden, but also blocks media players from scanning its contents.
| Method | Requires root | Visibility in managers | Cloud compatibility |
|---|---|---|---|
| Folder with a dot (.secret) | No | Hidden (configuration) | Yes |
| Cryptomator | No | Visible as an encrypted file | Yes |
| /data/local/tmp | Yes | Invisible without ADB | No |
| Non-breaking space | No | Visible as empty | Limited |
How to create a .nomedia folder?
A folder named .nomedia blocks scanning of its contents by media players and the gallery. To create it:
1. Open a file manager (for example, Solid Explorer).
2. Click "Create a folder."
3. Enter a name .nomedia (including a period).
4. Move files that you do not want to see in the gallery into it.
Please note: some managers (for example, standard in Xiaomi) automatically add an extension .folder. In this case, create a folder through Termux or ADB.
Frequent problems and their solutions
Even after successfully creating a folder without a name, you may encounter unexpected difficulties. Here are the most common of them and how to resolve them:
If none one of the methods did not work, check whether your firmware does not block such operations. For example, on Samsung Knoxdevices ( Galaxy S/Noteseries) you may need to disable Knox protection through the service menu (#0#), but this will void the warranty.
On devices with Android 10+ and Scoped Storage the creation of folders without names through standard managers is blocked at the API level. Use Termux or ADB to bypass. limitations.
FAQ: Answers to popular questions
Is it possible to create an untitled folder on an SD card?
Yes, but with reservations. On SD cards formatted in FAT32 or exFAT, folders with a non-breaking space work stably. However, symbols like Zero-Width Space (U+200B) can cause mounting errors, especially on devices with Android 9 and below. If the card is no longer detected, reformat it to ext4 (required). root access).
Why is a folder without a name visible in the gallery?
The application Gallery (and other media players) rely on a database MediaStorethat ignores directories with "empty" names. In order for files inside such a folder to be displayed, create a file inside it .nomedia - this is paradoxical, but it will force the system to index the contents, although the folder itself will remain invisible.
How to delete a folder without a name if it is not displayed?
Use one of these methods:
- Via ADB:
adb shell rm -r //sdcard/" "(replace
" "with your symbol). - Via Termux:
cd ~/storage/shared && rm -r " " - Connect your phone to the PC and use Far Manager or Total Commander with showing hidden files enabled.
Does this method work on Android 14?
On Android 14 with Scoped Storage i Photo Picker creating folders without names through standard managers is blocked. However, methods with ADB and Termux still work if you have access to the storage. On some devices (for example, Google Pixel 8you may need to temporarily disable Storage Isolation via commands:
adb shell device_config put activity_manager max_cached_processes 0
adb shell am force-stop com.android.providers.media
But this will lead to a reboot MediaStore and temporary loss of thumbnails in the gallery.
Is it possible to make a folder without a name in the root of the storage?
Technically yes, but this is will lead to failure of system applicationssuch like Downloads or Google Photos. A folder in the root (/sdcard/) with an empty name conflicts with the storage scanning mechanism. If you need to hide files in the root, use a folder named .hide or .secure โit will be hidden but will not disrupt the system.