A โโmemory card microSD is an indispensable accessory for owners of smartphones with limited internal storage. However, many users face difficulties when trying to access files on an external drive. The system may not display the card in Explorer, display โSD card is damagedโ errors, or require formatting. In this article we will look at all working methods access to the memory card on Android, including hidden methods through ADB i Recovery Mode, and also explain why the device can block access and how to fix it.
A feature of modern versions Android (starting from Marshmallow 6.0) is the separation of access rights to external drives. Manufacturers like Samsung, Xiaomi or Huawei often add their own restrictions, due to which standard methods do not work. We tested the solutions on devices with Android 10โ14 and collected up-to-date instructions that will help even if the card is not detected or unlocking was requested.
1. Standard method: through the built-in explorer
The easiest method is to use a standard file manager. On most smartphones it is called โFilesยป (Files), ยซExplorer" or "My file" (u Samsung). If the application icon is not on the main screen, find it through the system search (swipe down the screen and enter โfilesโ).
Action algorithm:
- ๐ฑ Open the "Files" application (or equivalent).
- ๐๏ธ At the top of the screen, select the "Device" or "Storageยป.
- ๐พ Scroll down the list - the memory card is usually displayed as "
SD cardยป, ยซExternal storage" or with the model name (for example,SanDisk 128GB). - ๐ Click on it to view the folders (
DCIM,Download,Musicetc.).
If the card is not visible in the explorer, check:
- ๐ Physical connection: remove and reinsert the card (sometimes the contacts oxidize).
- ๐ Reboot the device: hold the power button and select "Rebootยป.
- ๐ ๏ธ Storage settings: go to
Settings โ Storage โ SD cardand click "Mount" (if the option is available).
โ ๏ธ Attention: On some devices (for example, Xiaomi with a shell MIUI), the memory card can be displayed only after access permissions in the settings of the "Files" application Go to Settings โ Applications โ Files โ Permissions and enable access. storage.
2. Alternative file managers: when the standard one does not work
If the built-in explorer does not show the memory card, install a third-party application:
- ๐ Google Files - official manager from Google with support. cloud services.
- ๐ ๏ธ Solid Explorer - paid, but with a free trial period and advanced features (for example, access to root folders).
- ๐ FX File Explorer - supports
ROOT accessand work with FTP/SFTP. - ๐ Total Commander - classic manager with two-panel interface.
Instructions for Google Files:
- Download the application from Google Play and open it.
- In the bottom panel, click "Overview" (or "Deviceยป).
- Scroll down to the "Storage" section - the memory card will be indicated as "
SD card" or "External storageยป. - Click on it and confirm access if prompted.
If the application displays the error โNo access to SD card", follow these steps:
- Go to
Settings โ Applications โ Google Files โ Permissions. - Enable permissions "Storage" and "Manage external drives" (if available).
- Restart the application.
Download the application from the official store|Grant all requested permissions|Restart the smartphone after installation|Check the map is displayed in the storage settings-->
3. Access via PC: when the phone does not see the card
If the smartphone does not recognize microSD, connect it to the computer in file transfer mode (MTP). This method will also help if you need to copy data from a damaged card (for example, with the error โSD card is not formattedยป).
Step-by-step guide for Windows:
- Connect your smartphone to the PC via USB cable (preferably original).
- On your phone in the notification panel, select the โTransfer filesยป (MTPmode). If the option is missing, go to
Settings โ System โ Developer options โ USB configurationand selectMTP. - On your computer, open โThis computerยป (
Win + E). data-i="139">Double-click on the device - inside there will be a folder "Xiaomi Redmi Note 10ยป). - Double-click on the device - inside there will be a folder "
SD card" or "Cardยป.
For MacOS additional software will be required, for example, Android File Transfer (official application from Google). Download it from the developer's website, connect your phone and follow the instructions on the screen.
โ ๏ธ Attention: If the memory card is displayed on the PC, but not visible on the phone, the problem may be file systemModern smartphones supportFAT32AndexFAT, but notNTFSorext4. Check the card format through the disk properties on your computer.
| File system | Android support | Max. file size | Recommendations |
|---|---|---|---|
FAT32 |
Yes | 4 GB | Suitable for cards up to 32 GB. Does not support files >4 GB. |
exFAT |
Yes (with Android 6.0+) | 16 EB | Optimal choice for cards >64 GB. |
NTFS |
Partially (requires ROOT) | 16 EB | Not recommended without special rights. |
ext4 |
Only for internal memory | 16 EB | Used by the system, not suitable for SD cards. |
4. Access via Recovery Mode: if Android does not boot
If the smartphone does not turn on or the memory card is blocked due to a system failure, you can try to access via recovery mode (Recovery Mode). This method is suitable for experienced users and requires caution - incorrect actions can lead to data loss.
Instructions for stock Recovery (standard recovery):
- Turn off the phone.
- Hold down the button combination to enter Recovery (depends on models):
- ๐ฑ Samsung:
Power + Volume up + Bixby. - ๐ฑ Xiaomi/Redmi:
Power + Volume up. - ๐ฑ Google Pixel:
Power + Volume down.
- ๐ฑ Samsung:
For custom Recovery (for example, TWRP):
- Login to TWRP (same as stock Recovery).
- Select "Mount" and check the "Micro SDcardยป.
- Return to the main menu and select "Advanced โ File Managerยป.
- Go to the โ
/external_sd" folder - files from the memory card are stored here.
โ ๏ธ Attention: In Recovery Mode standard resolutions do not work Android. Do not delete or edit system files (for example, in folders/systemor/data), if you are not sure of your actions. This can lead to brick device.
What to do if Recovery Mode does not see card?
If the card is not displayed even in Recovery, the problem may be:
1. Physical malfunction card (check on another device).
2. Partition damage โ try formatting the card via PC (the data will be lost).
3. Incompatibility with Recovery โsome custom firmware blocks access to external drives in recovery mode.
5. Advanced method: via ADB (Android Debug). Bridge)
If the memory card is visible to the system, but not accessible through Explorer, you can access its contents using ADB a debugging tool AndroidThis method requires enabling USB debugging and is suitable for users familiar with the command line.
Instructions:
- Enable developer mode:
- Go to
Settings โ About phone. - Click 7 times on "Build number" (a notification "You have become a developer" will appear).
- Go to
Settings โ System โ Developer options and turn on "USB debuggingยป.Win + R โ enter cmd) and run the commands:
adb devices
(your device should be displayed)
adb shell
ls /storage
(find the folder with the memory card, for example /storage/1234-5678)
cd /storage/1234-5678
ls
(view files on the card)
To copy files from the card to the PC:
adb pull /storage/1234-5678/DCIM/ C:\Photos\
(replace the paths with the current ones).
โ ๏ธ Attention: ADB commands provide low-level access to the system. operations with the /system, /data or /vendor folders, if you do not understand the consequences, this can disrupt the operation of Android.
1. Are the drivers installed (for Windows, download Google USB Driver).
2. Have you allowed debugging on the phone (a request will appear when you first connect).
3. Are you using the original one? USB cable (cheap cables may not support data transfer).-->
6. Solving access problems: errors and blocking
If the memory card does not open, the system may display various errors. Let's look at the most common ones and how to resolve them.
| Error | Cause | Solution |
|---|---|---|
| "The SD card is damaged. Try formatting it." | File system damage, incorrect extraction. |
|
| "SD card is write protected" | Hardware lock (lever on adapter) or software limitation. |
|
| "No access to SD card" in applications | Restrictions Android for third-party apps. |
|
| The card is not detected | Card reader malfunction, oxidation of contacts, card failure. |
|
If the card is detected, but the files are not readable, try recovering the data using specialized utilities:
- ๐ง Recuva (for Windows) - recovers deleted files.
- ๐ง PhotoRec - works with damaged file systems.
- ๐ง DiskDigger (for Android) - does not require ROOT for basic scanning.
If the memory card stops working after updating Android, try rolling back to the previous firmware version or resetting the phone (saving the data on the PC).
7. Setting up the memory card as internal storage
Starting from Android 6.0 Marshmallow, it is now possible to format microSD as internal memory devices. This allows you to install applications on the card, but has nuances:
- โ Pros: expanded memory for applications, single storage.
- โ Cons: the card is tied to the device and will not be read on other gadgets without formatting.
- Insert the card into the smartphone.
- Go to
Settings โ Storage โ SD card. - Click on the three dots in the upper right corner and select "Storage settingsยป.
- Select "Format as internal" (all data will be deleted!).
- After formatting, move data and applications to the card via
Settings โ Applications. - Reboot the device.
- Remove and reinsert the card.
- Format the card (data will be lost).
- Reset the phone to factory settings (if the problem is not solved).
- ๐ฑ Samsung โ supports on most models.
- ๐ฑ Xiaomi โ supports, but may require unlocking the bootloader.
- ๐ฑ Huawei โ often blocks this option in new firmware.
- ๐ฑ Google Pixel โ supports, but after formatting the card only works on this one device.
- Go to
Settings โ Applications. - Select the desired application and click "Storageยป.
- Click "Change" and select "SD cardยป.
- ๐ File system damage: connect the card to the PC and run the command
chkdsk X: /f(where X is the letter disk). - ๐ Encryption: if the card was encrypted on another device, it will not be readable. Try inserting it back into the original phone.
- ๐ฆ Virus: scan the card with an antivirus (for example, Dr.Web or Kaspersky).
- ๐ฑ Manufacturer restrictions: Some brands (for example, Huawei) block access to certain types of files.
- ๐ Time: the fewer write operations after formatting, the higher the chances.
- ๐ง Format method: quick formatting leaves a better chance of recovery than full formatting.
- ๐พ File types: photos and videos are easier to recover than system files.
- ๐ฅ๏ธ Recuva or EaseUS Data Recovery (for PC).
- ๐ฑ DiskDigger or Undeleter (for Android, requires ROOT for deep scanning).
How to set up:
โ ๏ธ Attention: After formatting as internal storage, the card cannot be read on a PC or another phone without completely erasing it. Also do not remove the card without first โunmountingโ it in the settings - this will lead to a system failure.
FAQ: Frequently asked questions about working with memory cards on Android
๐น Why the phone does not see the memory card after the update?
The update Android may reset the settings for access to external drives. Try:
If the card worked as internal storage, you may need to reformat it after the update.
๐น Is it possible to use a memory card as internal on all phones?
No, not all manufacturers support this function. For example:
Before formatting, check compatibility in the storage settings.
๐น How to transfer applications to a memory card?
If the card is formatted as internal storage:
If the card is not internal memory, transferring applications is only possible from root access or through special applications like AppMgr III (not all applications support transfer).
๐น The memory card is detected, but the files do not open. What should I do?
Possible reasons and solutions:
๐น You can Is it possible to recover data from a formatted card?
Yes, but success depends on:
Use apps: