Check USB Format on macOS | Generated by AI
Question: In macOS, how to know what format a USB disk is (FAT32 or others)?
Answer:
Here are the easiest ways to check the file system format (such as FAT32, exFAT, APFS, Mac OS Extended, NTFS, etc.) of a USB drive on macOS:
Method 1: Using Finder (Quickest – Recommended)
- Plug in your USB drive.
- Open Finder.
- In the sidebar, locate your USB drive (it usually appears under “Locations”).
- Right-click (or Control-click) the USB drive name.
- Choose Get Info.
- In the Info window, look for the line labeled Format (near the top, under General).
- You will see something like:
- MS-DOS (FAT32) → This is FAT32
- ExFAT → Modern large-file compatible format
- Mac OS Extended (Journaled) → Also called HFS+
- APFS
- Windows (NTFS)
- etc.
- You will see something like:
This method works on any recent macOS version and is the fastest for most users.
Method 2: Using Disk Utility (More detailed view)
- Plug in your USB drive.
- Open Disk Utility:
- Go to Applications → Utilities → Disk Utility
- Or use Spotlight (Cmd + Space) and type “Disk Utility”
- In the left sidebar, select your USB drive (click the actual device name, not just the volume — if you don’t see the full device list, go to menu View → Show All Devices).
- Look at the information shown in the main area:
- You will see Format or File System listed clearly (e.g., “MS-DOS (FAT32)”, “ExFAT”, “APFS”, etc.).
- You can also click the Info button (i icon) at the top for more details.
Method 3: Using Terminal (For command-line users)
- Open Terminal (Applications → Utilities → Terminal).
- Run this command to list all disks:
diskutil list→ Find your USB drive (usually something like
/dev/disk2or/dev/disk3— look at the size and name to identify it). - Then run (replace
disk3with your actual disk number):diskutil info disk3s1(use the partition like
diskXs1ordiskXs2that corresponds to the volume) → Look for the line File System Personality or Type (Bundle) — it will show FAT32, ExFAT, Journaled HFS+, APFS, etc.
Quick tip: FAT32 usually appears as MS-DOS (FAT32) in macOS. If you see just “MS-DOS (FAT)”, it’s the older 16-bit FAT (rare on modern USB drives).
These methods work on macOS Ventura, Sonoma, Sequoia, and earlier versions.
References:
- How to Determine File System of a Drive on Mac - OS X Daily
- Server Fault - How do I identify the file system of a drive in Mac OS?