Transferring files to SD card Android devices seems like a simple task, but in practice, users are faced with operating system limitations, compatibility issues, and hidden settings. With the release of Android 4.4 KitKat Google introduced a concept Scoped Storagethat radically changed the rules for working with external drives. Today, even basic operations like copying photos or installing applications on a memory card require knowledge of nuances - from formatting in FAT32/exFAT to manually assigning rights via an ADB.

In this article we will examine all current methods of copying files to an SD card in 2026including bypassing restrictions for modern versions of Android (12โ€“14). You will learn how to transfer data both from the smartphone itself and from the computer, why some files are not copied, and how to set up a memory card as an internal drive (with risks and consequences). We will separately dwell on solutions for Samsung, Xiaomi and other brands, where manufacturers add their own layers of restrictions.

1. Preparing the SD card: formatting and compatibility

Before copying files, make sure that your SD card formatted correctly. Android supports three file systems:

  • ๐Ÿ“ FAT32 - compatible with all devices, but limited to files up to 4 GB.
  • ๐Ÿ“ exFAT - optimal for files >4 GB (for example, 4K video), but may not be readable on older ones devices.
  • ๐Ÿ“ NTFS โ€”rarely used in Android due to recording problems.

To check the current format:

  1. Insert the card into the smartphone.
  2. Go to Settings โ†’ Storage โ†’ SD card.
  3. Click on the three dots (โ‹ฎ) and select Storage settings.
๐Ÿ’ก

If you plan to use the card as internal memory, Android will automatically format it in ext4 or f2fs โ€”these formats are not compatible with other devices!

To format on the phone:

  1. Open Settings โ†’ Storage.
  2. Select SD card โ†’ Format (or Clear).
  3. Confirm the action (all data will be deleted!).
โš ๏ธ Attention: Formatting in exFAT on some devices Xiaomi i Huawei may require first removing the card and using a PC. Otherwise, the system will only offer FAT32.

2. Copying files from the phone to an SD card (standard method)

The easiest method is to use the built-in one. The instructions are suitable for most devices. to file manager. The instructions are suitable for most devices on Android 8.0โ€“14:

  1. Open the application Files (or My file to Samsung).
  2. Go to folder with files (for example, Downloads or DCIM).
  3. Select files with a long tap or through the checkboxes.
  4. Click Copy (or Cut).
  5. Go back to the root directory, select SD card.
  6. Create a folder (if necessary) and click Paste.

Make sure the card is not write-protected (the lever on the adapter is in the "unlock" position)|Check the free space on the SD card (minimum 10% of the volume of copied files)|Disable battery optimization for the file manager (in the application settings)|Close all apps that may block files (for example, gallery)

-->

On some devices (for example, OnePlus or Oppo) the standard file manager may not show the SD card. In this case:

  • ๐Ÿ”ง Install a third-party manager (for example, Solid Explorer or FX File Explorer).
  • ๐Ÿ”ง Give it access to the storage in Settings โ†’ Applications โ†’ Permissions.
โš ๏ธ Attention: On Android 11+ applications by default only have access to their folder on the SD card (/Android/data/[package_name]For full access, manual configuration via ADB (see section 5).

3. Transferring files from a PC to an SD card (via USB)

If you need to copy large amounts of data (for example, movies or backups), it is more convenient to use a computer via USB cable and execute. steps:

  1. Unlock the phone screen.
  2. In the notification shade, select the connection mode: File transfer (MTP).
  3. Open on PC This computer (My computer in Windows).
  4. Find the device (for example, Samsung Galaxy S23) and open it.
  5. Go to the folder SD card (or Card).
  6. Drag and drop files with the mouse or use Ctrl+C/Ctrl+V.
๐Ÿ“Š Which copying method do you use more often?
From phone to SD card
From PC to SD card via USB
Via cloud and upload to card
Other method

If the SD card is not displayed on the PC:

  • ๐Ÿ”Œ Try another USB cable (not all cables support data transfer).
  • ๐Ÿ”Œ Restart your phone and PC.
  • ๐Ÿ”Œ Check if the card is being used as internal memory (in in this case, it will not be visible on the PC).
Problem Cause Solution
The card is not visible on the PC MTP mode is not activated Select File transfer in the notification shade
Files are not copied Not enough space Clear the card or use another drive
Error "The disk is write protected" Physical blocking on the adapter Switch the lever on the SD adapter
Slow copying USB 2.0 or damaged card Use USB 3.0 or check the card for errors

4. Using an SD card as internal memory (Adoptable Storage)

Starting with Android 6.0 Marshmallowappeared function Adoptable Storagethat allows you to use an SD card as part of the internal storage. This is useful for devices with a small amount of memory (for example, Samsung Galaxy A10 with 32 GB). However, the method has serious drawbacks:

  • โš ๏ธ The card will be encrypted and will not be readable on other devices.
  • โš ๏ธ After removing the card, applications installed on it will stop working.
  • โš ๏ธ The speed depends on the class of the SD card (recommended UHS-I Class 10).

To set up:

  1. Insert the SD card into the phone.
  2. When a notification appears, press Setup.
  3. Select Use as internal memory.
  4. Confirm formatting (all data will be erased!).
  5. Wait for the process to complete (may take up to 10 minutes).
What to do if the "Use as internal memory" option does not appear?

On some devices (for example, Xiaomi Redmi Note 10) the manufacturer disables this function. Solutions:

1. Use ADB (see section 5).

2. Install custom firmware (requires unlocking the bootloader).

3. support A1/A2 โ€”some devices allow formatting only for such cards.

After setup:

  • ๐Ÿ“ฑ Applications can be transferred to the card in Settings โ†’ Applications โ†’ [Select application] โ†’ Storage โ†’ Change.
  • ๐Ÿ“ฑ System updates can reset the card settings!

5. Bypassing Android 11+ restrictions via ADB (for experienced ones)

C Android 11 Google has tightened the rules for accessing SD cards: applications see only their own by default folder (/Android/data/[package_name]). To return full access, you will need ADB (Android Debug Bridge).

Instructions for Windows:

  1. Download Platform Tools from Google and unzip.
  2. Enable USB debugging on the phone (Settings โ†’ About phone โ†’ Build number โ€” tap 7 times, then return to Settings โ†’ System โ†’ For developers).
  3. Connect your phone to the PC and confirm permission to debug.
  4. Open a command line in the folder with platform-tools and enter:
adb shell sm set-force-adoptable true

adb shell sm list-disks

You will see the drive identifier (for example, disk:179,64). Copy it and run:

adb shell sm partition disk:179,64 private
๐Ÿ’ก

This command makes the SD card internal memory with full access for all applications. However, after removing the card, the phone may stop booting!

To return to standard mode:

adb shell sm partition disk:179,64 public
โš ๏ธ Attention: On some devices (for example, Samsung Galaxy S22), these commands may not work due to manufacturer locks. In this case, only root or custom recovery will help (TWRP).

6. Alternative methods: cloud, OTG and Wi-Fi

If standard methods do not work, consider alternatives:

  • โ˜๏ธ Cloud services:
    1. Upload files to Google Drive, Dropbox or Yandex Disk.
    2. Open the application on your phone and download the files directly to the SD card (select a folder when downloading).
  • ๐Ÿ”Œ OTG adapter:
    1. Connect the card reader with the SD card to phone via OTG.
    2. Use the file manager to copy.
  • ๐Ÿ“ถ Wi-Fi (FTP/HTTP):
    1. Install the application FX File Explorer or Solid Explorer.
    2. Activate the built-in FTP server.
    3. Connect to it from a PC via a browser or FileZilla.
  • For a large amount of data (for example, a backup copy Titanium Backup) it is more convenient to use Wi-Fi:

    1. Install Send Anywhere on your phone and PC.
    2. Select files on your PC and generate a 6-digit code.
    3. Enter the code on your phone and select the SD card as a target.

    7. Solving common errors

    When copying files to an SD card, users often encounter errors. Here are the most common ones and their solutions:

    Error Possible reason Fixing method
    Failed to copy: destination is busy The file with the same name is already exists Rename the file or confirm replacement
    SD card is damaged. Try to format File system errors Connect the card to the PC and run chkdsk [drive letter]: /f in CMD
    The application does not have access to SD card Limitations Scoped Storage (Android 11+) Use ADB (section 5) or update the application
    Insufficient memory when there is free space Fragmentation or bad sectors Format the card on exFAT PC
    Card is detected, but files are not copied Write protected or incompatible format Check the physical switch on the adapter and format it in FAT32

    If the card is no longer detected after copying:

    1. Remove and reinsert it.
    2. Try another adapter or device.
    3. If the card is not readable nowhere - it could fail. It will help to restore data Recuva or TestDisk (only when connected to a PC!).

    FAQ: Frequently asked questions

    Is it possible to transfer applications to an SD card without root?

    On most devices - yes, but with limitations:

    • ๐Ÿ“ฑ On Android 6.0โ€“9.0: use Settings โ†’ Applications โ†’ [Select] โ†’ Storage โ†’ Edit.
    • ๐Ÿ“ฑ On Android 10+: many manufacturers block this function. Alternative - ADB (section 5).
    • ๐Ÿ“ฑ Some applications (for example, WhatsApp or Google Play Services) cannot be transferred.

    For full control you will need root and application App2SD.

    Why is there not enough space on the SD card even though it is empty?

    This is due to:

    • ๐Ÿ—ƒ๏ธ Hidden files: Android creates folders .android_secure and Androidthat take up space.
    • ๐Ÿ—ƒ๏ธ Fragmentation: over time, the file system โ€œswellsโ€. The solution is formatting.
    • ๐Ÿ—ƒ๏ธ Reserved space: some cards (especially exFAT) reserve up to 7% of the volume.

    To clear:

    1. Connect the card to the PC.
    2. Turn on showing hidden files.
    3. Delete unnecessary folders (except DCIM, Downloads etc.).
    How to copy files to an SD card if the phone is not turns on?

    If the phone does not respond, but the SD card is working:

    1. Remove the card and insert it into another phone or card reader.
    2. Use an adapter microSD-to-USB to connect to a PC.
    3. If the card is not readable, try recovery apps (PhotoRec, R-Studio).

    If the card was encrypted as internal memory, it is impossible to recover data without a working phone It is impossible.

    What is the best SD card to buy for Android in 2026?

    Recommendations for choice:

    • ๐Ÿ›’ Capacity: 128โ€“256 GB (optimal for most tasks).
    • ๐Ÿ›’ Speed class:
      • UHS-I U3 or A2 โ€”for applications and 4K video.
      • UHS-I U1 โ€”for photos and music.
    • ๐Ÿ›’ Brands: SanDisk Extreme, Samsung EVO Plus, Kingston Canvas Go!.
    • ๐Ÿ›’ Avoid no-name cards - they often counterfeit the capacity.

    To use as internal memory, be sure to take a card marked A1 or A2!

    Is it possible to use an SD card on a phone and a PC at the same time?

    Technically yes, but with reservations:

    • ๐Ÿ–ฅ๏ธ If the card formatted as portable (FAT32/exFAT), it can be removed and connected to a PC without problems.
    • ๐Ÿ–ฅ๏ธ If the card is used as internal memory, removing it will lead to errors in applications.
    • ๐Ÿ–ฅ๏ธ For frequent reconnection, use cloud services or Wi-Fi transfer (section 6).

    Frequently removing the card can damage the slot contacts!