The file manager on Android is not just a tool for viewing folders, but a powerful center for managing all the data on your smartphone. Many users are limited to basic functions like copying photos, but in fact File Manager it is capable of much more: from working with cloud storage to fine-tuning access rights to system files. The problem is that manager interfaces (whether standard Files by Google or third-party solutions like Solid Explorer) are often overloaded with options, and there is no documentation.
In this article we will look at not only how to open files and create folders, but also little-known features: from encrypting confidential documents to automatic sorting downloads You will learn how to avoid common mistakes (for example, accidentally deleting system files) and what settings should be changed immediately after installation. And for advanced users, we have prepared a section on working with root access and ADB commands - this will help you get the most out of the file manager.
Why do you need File Manager on Android and which one to choose
Standard file manager pre-installed on most smartphones (for example Mi File Manager on Xiaomi or My Files on Samsung), suitable for basic tasks: viewing photos, videos and documents. However, it has critical limitations:
- ๐ No FTP/SFTP support for remote access to files
- ๐ No built-in folder encryption
- ๐ Cannot work with archive formats
.raror.7z - ๐ There is no synchronization function with clouds other than Google Drive
Third-party solutions like FX File Explorer, Total Commander or Astro File Manager are free of these disadvantages, but require time to set up. For example, Solid Explorer supports a two-panel mode (as on a PC), and Root Explorer allows you to edit system files - but this requires root access.
Which manager to choose? It all depends on the tasks:
| User type | Recommended File Manager | Key functions |
|---|---|---|
| Beginners | Files by Google | Simple interface, garbage cleaning, backup to Google Drive |
| Advanced | Solid Explorer | Dual-panel mode, cloud support (Dropbox, OneDrive), built-in FTP server |
| Developers | FX File Explorer + Root Add-on | Working with root, editing build.prop, access to /data/data/ |
| For multimedia | ES File Explorer (old versions) | Built-in player, sorting by metadata, streaming via DLNA |
โ ๏ธ Attention: Versions ES File Explorer after 2018 contain advertising and suspicious permissions. For security, use forks like ES File Explorer Pro (available on APKMirror).
Basic operations: copying, moving, deleting
Even if you have never used a file manager, mastering the basic actions is easy. Let's look at an example Files by Google (installed by default on most devices):
- Copy files: Hold your finger on the file โ select other files (if you need several) โ click
Copyin the bottom menu โ go to the target folder โPaste. - Move: Same as copy, but select
Cutinstead ofCopy. - Deleting: Select files โ
Deleteโ confirm the action. In Files by Google deleted files are sent toTrash(they can be restored within 30 days).
Important nuance: when moving files between internal memory and SD card Android may ask for permission. This is due to the security policy Scoped Storageintroduced in Android 10. If files do not move, check the storage settings in Settings โ Applications โ File Manager โ Permissions.
Highlighted the correct files (check names and dates)|
Verified that files are not associated with system applications|
Backed up important data|
Checked that files are not hidden (enable show hidden files in settings)
-->
To speed up work, use gestures:
- ๐ Double tap on a file - open
- ๐ Swipe left/right - switch between folders (in some managers)
- ๐ค Pinch (zoom) - enable multiple file selection mode
Standard (Files by Google, My Files, etc.)|
Solid Explorer|
Total Commander|
FX File Explorer|
Other (write in the comments)-->
Working with archives: ZIP, RAR, 7z
File compression saves space and simplifies data transfer. Most file managers support creating and unpacking .ziparchives "out of the box", but to work with .rar or .7z additional software will be required (for example, RAR for Android or ZArchiver).
How to archive files:
- Select files/folders in the manager.
- Click
More(orโฎ) โCompress. - Select format (
.zipor.7z), compression level (for example,Maximumfor text files) and confirm.
How to unpack the archive:
- Find the archive in the manager and tap on it.
- Select
ExtractorUnpack here. - For password-protected archives, enter key (if required).
Tip: if the archive is damaged (error CRC failed), try:
- ๐ง Use another archiver (for example, WinRAR on a PC).
- ๐ฅ Download archive again (the file may have been damaged during download).
- ๐ Change the extension from
.zipto.jar(sometimes helps with errors with Java archives).
For frequent operations with archives, configure in Solid Explorer "Favorite Folders" and add the directory there Downloads. This way you can quickly archive downloads without searching the entire device.
Hidden files and system folders: what you can touch and what you canโt
By default, Android hides system files and folders (their names begin with a dot, for example .thumbnails or .android_secure). To see them, in most file managers you need to:
- Open the side menu (swipe on the right or button
โฐ). - Go to
SettingsโShow hidden files. - Confirm the warning about risks.
Critical folders that cannot be deleted or edited without root access:
- ๐ซ
/system/โ Android system files (deletion will lead to the device being bricked). - ๐ซ
/data/data/โ application data (damage will cause apps to malfunction). - ๐ซ
/efs/โ modem configurations (responsible for the network and IMEI). - ๐ซ
/dev/โ virtual device files (changes can disrupt the operation of the hardware).
What can be safely deleted (if you donโt use it):
- ๐๏ธ
.thumbnailsโ image thumbnails (automatically restored). - ๐ต
.nomediaโ files that block media scanning (can be deleted if you want the gallery to show all files). - ๐
Download/โ old downloads (check that there are no important files there).
โ ๏ธ Attention: If you deleted the system file and the smartphone stopped loading, try restoring it viaADBinRecoverymode. Commands for recovery:adb pull /system/build.prop build.prop_backup
adb push build.prop /system/But this will only work if you have a backup and USB debugging is enabled.
Cloud storage and synchronization
Modern file managers integrate with clouds, allowing you to manage files on Google Drive, Dropbox, OneDrive and even Yandex Disk directly from the application. For example, in Solid Explorer to connect the cloud you need:
- Open the side menu โ
Add cloud. - Select a service (for example, Google Drive).
- Login through the browser (will open automatically).
- After successful connection, the cloud will appear in the list of storages.
Advantages of such integration:
- ๐ Automatic synchronization of selected folders (for example, photos from a camera can be immediately uploaded to the cloud).
- ๐ฑ Access to files from any device (even if the smartphone is lost).
- ๐ Ability to encrypt files before uploading (in Cryptomator + Solid Explorer).
For to automate synchronization, use tasks (in Total Commander this is called Scheduler). For example, you can configure:
- ๐
Daily backup copying a folder
DCIM/Camera/to Google Drive. - ๐ Deleting local copies of files older than 30 days (so as not to take up space).
- ๐ค Automatic uploading of screenshots to Dropbox.
How to set up FTP server on Android
1. In Solid Explorer go to โฐ โ FTP server.
2. Click Run and remember the address (for example, ftp://192.168.1.10:2221).
3. On your PC, connect via any FTP client (for example, FileZilla) with a login anonymous and an empty password.
4. Now you can transfer files between your PC and your smartphone over a local network. cable!
Root access and advanced capabilities
If your smartphone unlocked (has root access), the file manager turns into a tool for deep system customization, for example, using Root Explorer or FX File Explorer with Root plugin you can:
- ๐ Edit system files (
build.propto change the screen DPI or device model). - ๐ง Remove built-in applications (bloatware) without consequences.
- ๐ Mount partitions
/systemand/datain recording mode. - ๐ Change access rights (
chmod) to files through the terminal inside the manager.
Example: how to remove an unnecessary system application:
- Open Root Explorer and go to
/system/app/or/system/priv-app/. - Find the folder with the name of the unnecessary application (for example,
com.android.browserfor the standard browser). - Hold your finger on the folder โ
Delete(or rename by adding.bakfor backup). - Reboot the device.
โ ๏ธ Warning: Removing system applications may disrupt Android operation. Before making changes, make a backup copy of the partition/systemvia TWRP or the command:adb backup -apk -obb -shared -all -f /sdcard/backup.ab
To work with root the following commands are useful (executed in the file manager terminal or via ADB):
su # Receiving root accessmount -o rw,remount /system # Mount /system in write mode
chmod 644 /system/build.prop # Changing file access rights
ls -la /data/app/ # View the list of user applications
Automation and scripts
Advanced file managers (for example, Total Commander) support the execution of scripts on JavaScript or ShellThis allows you to automate routine tasks:
- ๐ Rename hundreds of files using a template (for example, add a date to a photo name).
- ๐๏ธ Removing duplicates or old files by mask.
- ๐ค Automatic sorting of downloads into folders (video โ
Videos/, music โMusic/).
Example script for renaming files (for Total Commander):
// Rename all files in the folder by adding the prefix "IMG_"var dir = Android.getCurrentDirectory();
var files = dir.listFiles();
for (var i = 0; i < files.length; i++) {
if (!files[i].isDirectory()) {
var newName = "IMG_" + files[i].getName();
files[i].renameTo(new java.io.File(dir, newName));
}
}
To run the script:
- Save it to a file with the extension
.js(for example,rename.js). - In Total Commander go to the folder with the script.
- Select the file โ
Run script(in the menuโฎ).
For automation without scripts, use task scheduler (available in Solid Explorer i FX File Explorer). For example, you can configure:
- ๐ Daily file deletion from
Download/older than 7 days. - ๐ค Automatic uploading of new screenshots to Google Drive.
- ๐ Folder synchronization
Documents/with Dropbox every evening.
Automation saves time, but test scripts on copies of files before mass application. An error in the code can lead to data loss!
FAQ: Frequently asked questions about File Manager on Android
Is it possible to recover files deleted through File Manager?
Yes, if:
- The files were recently deleted and are still in
Trash(in Files by Google or Mi File Manager). - You use recovery applications (for example, DiskDigger or Recuva on a PC).
- The device has Google Drive backup enabled (files can be restored via
drive.google.com).
For system files recovery is possible only via ADB or TWRPif there is a backup.
Why does File Manager not see the SD card?
The problem may be in:
- ๐ต Missing permissions: go to
Settings โ Applications โ File Manager โ Permissionsand enable access to the storage. - ๐ Incorrect formatting: The SD card must be formatted in
FAT32orexFAT(NTFS is not supported on most Android devices). - ๐ฑ Android Settings: In
Settings โ Storage โ Storage settingscheck that the card is connected asPortable storage(not likeInternal memory).
If the card is damaged, try scanning it on a PC with using CHKDSK:
chkdsk E: /f
(replace E: with your drive letter).
How to transfer files from Android to PC without a cable?
Methods:
- ๐ Via FTP server (setup in Solid Explorer or FX File Explorer).
- โ๏ธ Via cloud (Google Drive, Dropbox - upload files from your smartphone and download to your PC).
- ๐ถ By Wi-Fi Direct: on PC use Feem or Send Anywhere.
- ๐ Via email/messengers: send files to your email or Telegram (limit is usually up to 2 GB).
For large files (>4 GB) it is better to use FTP or the cloud with support for large downloads (for example, Mega).
Is it possible to edit files directly in File Manager?
Yes, but the capabilities depend on manager:
- ๐ Text files: most managers (for example, Solid Explorer) have a built-in editor with syntax highlighting for
.txt,.json,.xml. - ๐จ Images: basic cropping and rotation are available in Files by Google; for advanced editing you need separate applications (Snapseed, Lightroom).
- ๐ Tables/documents: files
.xlsxor.docxwill open in Microsoft Office or Google Docs (if installation).
For editing system files (for example, build.prop) you need root access and a specialized editor (BuildProp Editor).
How to protect files in File Manager with a password?
Options:
- ๐ Built-in function: in Solid Explorer or FX File Explorer you can create
Secure folderwith a PIN code. - ๐ Archiving with a password: pack files in
.zipor.7zwith encryption (select ZArchiver selectEncrypt fileswhen creating an archive). - ๐ Safe applications: KeepSafe or Vault hide files and require a password for access.
For maximum security, combine methods: for example, put an archive with a password in a protected folder.