If your computer offers to format the drive, or says "You need to format the disk before you can use it" — click Cancel. That message does not mean the drive is empty or broken beyond repair. It means the computer can't read the filesystem, which is often recoverable. Formatting makes it far less so. Work through this page first.
The four layers
For a drive to appear in your file manager, four things must succeed in order:
- Power and connection — the drive is receiving enough power and the data path works.
- Detection — the operating system sees a storage device exists.
- Partition — the drive has a readable partition table describing how it's divided.
- Filesystem — the partition is formatted in a way this computer understands, and gets mounted.
"Doesn't show up" is what all four failures look like from the desktop. But layer 1 means a cable; layer 4 means your data is probably fine and just needs the right handling. Guessing between them is how people format drives they could have recovered.
Open the disk tool — it answers the question
Skip the file manager. Open the tool that shows raw disks, not mounted volumes.
- Windows: right-click the Start button → Disk Management (or press Windows + R and type
diskmgmt.msc). - macOS: Applications → Utilities → Disk Utility. Then, importantly, set View → Show All Devices — otherwise it hides drives whose volumes can't be mounted, which is exactly the case you're investigating.
Now find your drive and read what it says:
| What you see | Layer | Meaning |
|---|---|---|
| Drive isn't listed at all | 1 | Not detected — cable, port, or power |
| Listed, correct size, but no drive letter | 2 | Detected and readable, just not mounted |
| Listed as "RAW", "Unknown", or "Not initialized" | 4 | Partition or filesystem damage — don't format |
| Listed as "Unallocated" across the whole drive | 4 | Partition table lost — data likely still there |
| Listed with a filesystem you don't recognise | 3 | Formatted for a different operating system |
| Listed at the wrong size (e.g. 8 GB on a 128 GB card) | — | Very likely a counterfeit card — see below |
Layer 1: not detected at all
Nothing in the disk tool. The computer has no idea anything is plugged in.
- Try a different port, directly on the computer rather than through a hub, dock, or monitor. This is the most common fix by a wide margin.
- Avoid front-panel and hub ports for large drives. A 2.5" portable hard drive needs more power than some ports and unpowered hubs supply. It may spin up briefly, fail, and vanish. Rear ports on a desktop, or a powered hub, solve this.
- Try a different cable. Especially with USB-C: many cables are charge-only and carry no data at all. If your drive charges a phone fine on that cable, that tells you nothing about data.
- Listen and feel. A mechanical drive should spin up — a faint whirr and vibration. Silence means no power. Clicking means a failing drive; unplug it and see the last section.
- Test on another computer. This splits the problem cleanly: works elsewhere means your computer or its ports; fails everywhere means the drive.
Layer 2: detected, no drive letter
The drive is listed at the right size with a healthy partition, but doesn't appear in your file manager. This is a mounting problem and your data is fine.
Windows: in Disk Management, right-click the partition → Change Drive Letter and Paths → Add → pick a letter. This happens when the letter it wants is already taken by a mapped network drive or a card reader.
macOS: select the volume in Disk Utility and click Mount. If mounting fails, run First Aid on it — that repairs minor filesystem damage and is safe to try.
Also worth checking on Windows: Device Manager for a device with a warning triangle. If the USB controller or the drive shows an error, uninstall that device entry and unplug/replug — Windows reinstalls the driver cleanly. Stale or corrupt USB entries accumulate over years and cause exactly this.
Layer 3: wrong filesystem for this computer
Operating systems don't all speak the same filesystem, and this catches people constantly — especially anyone moving a drive between a Mac and a PC.
| Filesystem | Windows | macOS | Notes |
|---|---|---|---|
| exFAT | Read + write | Read + write | The right choice for a drive shared between both |
| FAT32 | Read + write | Read + write | Universal, but no single file over 4 GB |
| NTFS | Read + write | Read only | Mac can open files but not save to it |
| APFS / HFS+ | Not readable | Read + write | Windows won't see it at all without extra software |
| ext4 | Not readable | Not readable | Linux drives need third-party tools on both |
If a drive works on one machine and not another, this is almost certainly why — and the drive is completely healthy. To make a drive work everywhere, back its contents up and reformat as exFAT. Don't reformat before copying the data off from the machine that can read it.
Layer 4: corrupted or missing partition
The drive shows as RAW, Unknown, unallocated, or triggers the "you need to format this disk" prompt. This usually follows being unplugged mid-write, a power cut, or removal without ejecting.
Your data is very likely still there. What's damaged is the index describing where things are, not the things themselves. Handle it in this order:
- Do not format. Do not "initialize" the disk in Disk Management. Both write new structures over the ones you need recovered.
- Try a filesystem repair first. Windows: open Command Prompt as administrator and run
chkdsk X: /f(replace X with the drive letter). macOS: Disk Utility → First Aid. These fix minor damage and often bring the drive straight back. - If repair fails, use recovery software — and read our file recovery guide first, because the rules matter: never install the software onto the affected drive, and never save recovered files back to it.
- Only format once you've recovered what you need, or accepted the loss. A drive that formats cleanly afterwards is usually fine to keep using; one that fails to format is failing hardware.
SD card specifics
- The write-protect switch. Full-size SD cards have a small slider on the left edge. If it's down, the card is read-only — and some readers report a locked card as unreadable entirely. It also gets knocked accidentally in a pocket. Check it first; it takes two seconds.
- Clean the contacts. Gold contacts pick up grease and grime. A dry cloth or a pencil eraser used gently on the pads fixes a surprising number of intermittent cards.
- Try a different reader. Built-in laptop card slots fail more often than the cards do. A cheap USB reader is a good test and a good spare.
- Format in the device, not the computer. For cameras, dashcams, and game consoles, always format using that device's own menu. Formatting in a computer can produce a layout the device handles badly.
- Counterfeit cards. If a card reports the wrong capacity, fails after you write a certain amount, or was suspiciously cheap, it's likely fake firmware reporting a size the hardware doesn't have. Data written past the real limit is silently lost. There's no fix — stop using it.
Signs the drive is actually dying
Stop troubleshooting and prioritise getting data off if you see:
- Clicking, beeping, or grinding from a mechanical drive. Unplug it. Every additional spin-up risks more damage, and this is the one case where a professional recovery lab is genuinely worth the cost.
- It appears and disappears repeatedly while plugged in.
- Copying works for a while then hangs at a consistent point.
- Files that were fine are now corrupted when opened.
In each case: copy your most important files first, in small batches, starting with the ones you'd most regret losing. Don't run repair tools or full-disk scans before you've got the critical data off — those put the drive under exactly the sustained load that finishes off a failing one.
Open Disk Management (Windows) or Disk Utility with "Show All Devices" (Mac). Not listed → cable, port, or power; try a rear port and a known-data cable. Listed but no letter → assign one, or Mount; your data is fine. Listed as RAW or unallocated → do not format; run a repair, then recovery software. Works on one computer only → filesystem mismatch, and the drive is healthy.
Sources
- SD Association — SD Standard overview
- USB Implementers Forum — USB specifications and documents