How to find out the volume and free space of the flash drive on Xiaomi: the complete guide

Putting microSD into Xiaomi Redmi, POCO or Mi, but you're not sure if it's the right size, or you want to check how much space you have left on your memory card after you write files? In this article, we'll look at all the ways you can go from standard MIUI tools to professional utilities that will show not only free space, but also the speed of the drive.

Itโ€™s important to understand that Xiaomi smartphones sometimes misrepresent flash drive data due to file system features (e.g. exFAT on cards over 32GB) or problems with slot contacts. Weโ€™ll tell you how to avoid typical errors and what to do if the phone doesnโ€™t see part of the memory, and how to distinguish the original card from a fake card with an understated real volume.

1. Check the memory of the flash drive through the MIUI settings

The fastest way is to use the built-in system tools, which is suitable for all Xiaomi models, starting with MIUI 10 and later (including HyperOS).

  1. Open the Settings app** (cog icon).
  2. Go to the About Phone section. โ†’ Warehouse.
  3. Scroll down to the memory card block** (or SD-map).

Here you will see two key figures:

  • ๐Ÿ“Š Total volume โ€“ the real capacity of the flash drive (for example, 128 GB).
  • ๐Ÿ“‰ Free space โ€“ how much is left for new files.
  • ๐Ÿ”„ System files โ€“ occupied by service data (cache, hidden folders).

If the Memory Map section is missing, this means that:

  • โŒ The flash drive is not inserted or recognized.
  • โŒ The card is formatted in an incompatible file system (e.g, NTFS).
  • โŒ The settings include โ€œDisable Memory Cardโ€** (see Section 3).

๐Ÿ’ก

If the storage section displays less than the stated volume (for example, 58 GB instead of 64 GB), this is normal: manufacturers specify capacity in the decimal system (1 GB = 1,000,000 bytes), and the system in the binary (1 GB = 1,073,741,824 bytes).

2.Using Xiaomi File Manager

MIUI has a regular Files icon that shows detailed information about the drives, a method that is convenient if you not only need to check the volume, but also quickly clear unnecessary files.

Instructions:

  1. Launch the Files app** (or File Manager on global firmware).

In this section you will see:

  • ๐Ÿ“ Diagram of occupied space by category (photos, videos, documents).
  • ๐Ÿ” The โ€œCleanโ€ button to delete unnecessary files.
  • โš™๏ธ Card settings (formatting, extracting).
What to do if the file manager does not see the flash drive?
If the memory card is not displayed in Files, but is physically inserted into the slot: 1. Reboot the phone. 2. Remove and re-insert the flash drive (check contacts for dirt). 3. Try connecting the card to another device (PC, other phone) - if it is also not determined there, the drive is defective. 4. MIUI Go to the Warehouse. โ†’ Settings (โš™๏ธ) โ†’ Turn off the memory card and turn it on again.

Warning: If you have connected the flash drive as โ€œInternal Storageโ€** (an option on the first connection), the system may not show it separately in the file manager, in which case the card data is combined with the main memory of the phone.

3. Third-party applications for memory analysis

If standard MIUI tools don't seem informative enough, use specialized utilities that not only show the size of the flash drive, but also analyze its health, read/write speed, and detect fakes.

Top.-3 apps:

AnnexFunctionsLink (Google Play)
A1 SD Benchโœ… Read/write speed testโœ… Verification of the real volumeโœ… Detection of counterfeit cardsDownload
SD Insightโœ… Shows the manufacturer and chip modelโœ… Determines the authenticity of the mapโœ… Analyzes cell wearDownload
DiskInfoโœ… Detailed information about the file systemโœ… Timetables for use of spaceโœ… Export of reportsDownload

Example of the A1 SD Bench:

  1. Install and open the application.
  2. Select your flash drive in the list of drives.
  3. Click Start Random Write + Read Test.
  4. Wait for the test to be completed (it will take 1-5 minutes).

Results that should be paid attention to:

  • ๐Ÿ”ข Total Storage โ€“ real volume (must match the declared volume).
  • โšก Write/Read Speed โ€“ speed of writing/reading (for the purpose of reading) UHS-I norm: 10โ€“90 MB/s).
  • โš ๏ธ Warning: Fake Card! โ€“ Signal of counterfeit (volume understated).
๐Ÿ“Š What app do you use to check your flash drive?
Built-in MIUI tools
A1 SD Bench
SD Insight
DiskInfo
Other

Checking through a computer (for accurate diagnosis)

If you want to check your flash drive as accurately as possible (for example, before buying or if you suspect a fake), connect it to a PC, which will allow you to use professional utilities like H2testw or CrystalDiskMark.

Step-by-step:

  1. Remove the card from Xiaomi and paste it into the PC card reader.

Critical: if H2testw shows Warning: Only 15.9 GByte OK error on a 32GB card, it is 100% fake. The real volume of such a flash drive is less than 16GB, and the rest of the space is โ€œcloggedโ€ with junk data.

For the CrystalDiskMark speed test:

  • Select the number of passes: 5.
  • Specify the file size: 1000 MiB.
  • Run the test with the All button.

โš ๏ธ Warning: If the recording speed is lower 5 MB/s on a class map UHS-I (U1/U3), This is a sign of wear and tear or defect, and it's not recommended to use this flash drive to record video in a video. 4K installing applications.

5. ADB commands for advanced users

If you're familiar with ADB (Android Debug Bridge), you can get your flash drive data through the command line, which is useful for diagnosing mounting or file system problems.

Instructions:

  1. Install ADB Tools on your PC.
  2. Enable USB Debugging** on Xiaomi (Settings โ†’ About Phone โ†’ MIUI Version โ†’ 7 times click to activate Developer Mode, then Additional โ†’ Developers โ†’ Debugging over USB).
adb shell


sm list-volumes

Find the line with the sdcard or external_sd. For example:

private:179,64 mount_point=/mnt/media_rw/1234-5678 description=SD Card

To find out the free space, use:

df -h /mnt/media_rw/1234-5678

Where 1234-5678 is your flash driveโ€™s unique identifier (it will be different in your case).

The result will be similar to:

Filesystem      Size  Used Avail Use% Mounted on


/dev/block/vold/179:65




119G   12G  107G  10% /mnt/media_rw/1234-5678

Here:

  • Size is the total volume.
  • Used is occupied space.
  • Avail is a vacant seat.

๐Ÿ’ก

The sm list-volumes command shows all connected drives, including internal memory and storage. OTG-If your card is not listed, the problem is with the hardware (slots, contacts) or drivers. MIUI.

Frequent problems and their solutions

Sometimes the flash drive is not correctly defined by Xiaomi: it shows a smaller volume, does not format or disappears after a reboot, let's look at typical cases and how to fix them.

Problem 1: The flash drive shows less volume than claimed

Causes and solutions:

  • ๐Ÿ› ๏ธ Fake card - check in on the H2testw or A1 SD Bench.
  • ๐Ÿ—ƒ๏ธ File system FAT32 โ€” Limits file size to 4 GB. Solution: format in exFAT (via PC).
  • ๐Ÿ”ง Hidden System Files โ€“ Use DiskInfo for Analysis.

Problem 2: The phone doesn't see the flash drive

Checklist for diagnosis:

Make sure the card is inserted before clicking|Reboot the phone|Check the flash drive on another device|Clean the slot contacts with alcohol|Update MIUI last-minute-->

Problem 3: The memory card is permanently disabled

Possible causes:

  • ๐Ÿ› ๏ธ Wear of contacts - inspect the slot for damage.

โš ๏ธ Note: if after formatting the flash drive on the PC (in) NTFS) Itโ€™s not going to be Xiaomi, thatโ€™s okay โ€” MIUI supportive NTFS without root. Use exFAT or FAT32.

FAQ: Frequent questions about flash drives on Xiaomi

โ“ Can I use a flash drive as an internal memory on Xiaomi?
Yes, but with reservations: The feature is available on MIUI 8 and later (except for some budget models), the card will be formatted and encrypted - it will not be read on other devices. The speed of applications from the flash drive is lower than from internal memory. To activate: Insert the card and wait for notifications. Click Configure โ†’ Use as internal storage.
โ“ Why Xiaomi is showing a 58GB flash drive instead of 64GB?
It's not a mistake. Manufacturers are putting capacity in decimal gigabytes (1 GB = 1 000 000 000 bytes), and the operating system in binary (1 GB = 1 073 741 824 The difference is ~7%. Example: Claimed: 64 GB = 64 000 000 000 - Really: 64 000 000 000 / 1 073 741 824 โ‰ˆ 59,6 GB.
โ“ How to format a flash drive on Xiaomi?
Method 1 (through settings): Open Settings โ†’ Storage. Click on Memory Map. โ†’ Format. Select the file system: exFAT (for cards) >32 GB) or FAT32. Method 2 (via file manager): Open Filesยป** โ†’ SD-Press three dots (โ‹ฎ) โ†’ Storage settings โ†’ Format. โš ๏ธ Warning: formatting will delete all data! If there were important files on the map, copy them to your PC first.
โ“ What flash drives work best with Xiaomi?
Recommended models (based on the results of tests on the Redmi Note) 12, POCO X5, Mi 11): Model Volume Speed Class Average Price (2026) SanDisk Ultra A1 64โ€“512 GB A1, U3, V30 from 800 โ‚ฝ Samsung EVO Select 64โ€“256 GB A2, U3, V30 from 900 โ‚ฝ Kingston Canvas Go! Plus 64โ€“128 GB A2, U3, V30 from 700 โ‚ฝ Selection criteria: ๐Ÿ”น For applications: class A1/A2 (speed up the work of the programs). ๐Ÿ”น For the video. 4K: class U3/V30 (speed 30 MB/s). ๐Ÿ”น For photos and music: enough U1/V10.
โ“ Can you recover data from the flash drive if Xiaomi canโ€™t see it?
Yeah, but the odds depend on the cause: ๐Ÿ”ง Logical errors (incorrect formatting): use Recuva or PhotoRec on PC. ๐Ÿ”ฅ Physical damage (fall, water): contact the laboratory (cost from 3 000 โ‚ฝ). โšก Controller failure: Flash Drive Information Extractor firmware sometimes helps. Recuva instruction: Connect the flash drive to your PC. In Recuva, select the disk and file type (photo, video). Run the scan (deep analysis will take several hours).