How To Recover Deleted Files From USB After Files Disappeared?

Files suddenly disappeared from my USB drive after I unplugged it, and now important photos and work documents are missing. I didn’t mean to delete anything, and I need help figuring out how to recover deleted or lost files from a USB flash drive before they’re gone for good.

I learned this one the hard way, so here’s the short warning first. If your USB stick is making clicking noises, dropping off and on, or feels hot in your hand, unplug it and stop there. Don’t keep testing it. Don’t run repair tools. Get it to a data recovery shop. A failing drive tends to get worse while it stays powered, and commands like CHKDSK often write changes all over the device. You might end up with a mountable drive and wrecked files, which is a bad trade.

If the simple checks didn’t bring your files back, I’d assume one of two things happened. The file table got damaged, or the files were removed for real. At that point, software made for recovery is the route I’d take.

I know people love pointing to PhotoRec, TestDisk, and Windows File Recovery. I’ve used them. They do work. Still, I would not hand them to most people unless you’re fine living in a terminal window and sorting out a mess after. PhotoRec in particular gave me a giant pile of files with names like f123456.jpg, no folders, no normal structure, nothing human. If you only need three vacation photos out of 8,000 files, have fun. I didn’t.

For regular users, the one I’ve had the least trouble with is Disk Drill. I liked it for USB recovery for a few plain reasons.

  1. It lets you image the drive first. You make a byte-for-byte copy of the USB stick, then scan the copy instead of hammering the original device again and again. If the flash drive is unstable, this matters a lot.
  2. You get previews before restoring. I could check photos, videos, and docs before saving anything. That saves time, and it cuts down on guessing.
  3. It keeps more of the structure intact. Compared with the free command line tools, it did a better job keeping folders recognizable and identifying a lot of file types. It also works with BitLocker-encrypted drives, which saved me once.

One rule matters more than people think. Save recovered files to your computer’s internal drive, not back onto the same USB stick. If you write new data onto the drive you’re trying to rescue, you risk overwriting the exact files you want back. I did this years ago on an old thumb drive. Dumb mistake. Don’t repeat it.

After your files are safe on the PC, wipe and reformat the USB stick if you still want to test it. Me, I usually stop trusting a flaky one and replace it. Storage is cheap. Lost files aren’t. If you move slow and keep writes off the damaged drive, your odds are a lot better.

1 Like

First, check if the files are hidden, not deleted. This happens a lot after a bad unplug.

Do this on Windows:

  1. Plug in the USB.
  2. Open File Explorer.
  3. Click View, then show Hidden items.
  4. Open Command Prompt as admin.
  5. Run:
    attrib -h -r -s /s /d X:*.*
    Replace X with your USB letter.

If your folders come back, the data never left. The file attributes got messed up.

I slightly disagree with @mikeappsreviewer on one point. CHKDSK is not always evil. On a healthy USB with only minor file system errors, it sometimes restores directory access. But if the drive disconnects, freezes, or makes odd sounds, skip it. On flash media, CHKDSK has a bad habit of ‘fixing’ things by removing file references. So use it only after you try the hidden-file fix and only if the stick seems stable.

Command:
chkdsk X: /f

If the files are gone after that, use recovery software. Disk Drill is a solid pick for USB recovery because it finds deleted files, lost partitions, and RAW USB drives in one scan. Search for best USB data recovery software for Windows and Mac in 2026, and you’ll see it listed a lot for a reason. Save recovered files to your PC, not back to the USB. Peopel keep doing that and then wonder why recovery gets worse.

If Windows sees the USB as RAW or asks to format it, do not format first. Scan it.

Also worth checking:

  1. Disk Management, see if the partition letter changed.
  2. Another PC or USB port.
  3. Event Viewer, if Windows logged USB disconnect errors.

If you want a quick visual walkthrough, this video helps: watch this USB data recovery guide

If the drive keeps dropping out, stop messing with it. At taht point, software recovery gets less safe and a lab is the smarter move.

One thing I’d add that @mikeappsreviewer and @vrijheidsvogel only touched around is checking whether the files were moved into a weird orphaned folder rather than truly deleted. After a bad unplug, Windows sometimes dumps recovered fragments into folders like FOUND.000 with .CHK files. Most people ignore that folder, but I’ve actually pulled docs and photos out of there before with a CHK file viewer or by renaming files based on type. It’s ugly, but it works sometimes.

Also, I’m a little less optimistic about trying lots of “fix” commands early. Even when the USB seems fine, every repair attempt is still messing with metadata. My order would be:

  1. Stop using the USB.
  2. Check Properties and see if used space still looks normal.
  3. Look for FOUND.000, weird empty folders, or missing drive-letter issues.
  4. If the data matters, scan first, repair later.

If the used space is still mostly full but files are gone, that’s actually a decent sign. Usually means the data may still be there and the directory info got borked.

For recovery apps, yeah, Disk Drill is one of the easier ones for USB data recovery, especially if you want previews and don’t want to fight with command line tools for two hours like it’s 2009. I’d use that before doing anything destructive. Recover to your computer, not the stick itself. Seriously, peopel keep making that mistake.

If you want more real-world opinions, this thread is worth a read: best ways to recover files from a faulty USB drive

SEO-friendly version: USB drive recovery options for disappeared, deleted, or missing files after an unsafe unplug.

One angle the others only lightly touched: check whether this was a power-loss corruption issue from the USB controller, not just file deletion. If the stick unplugged badly, the directory can vanish while the raw file data is still there. In that case, I would avoid spending too much time on repair attempts early. Slight disagreement with @vrijheidsvogel here: even “safe” fixes can change metadata enough to make later recovery messier.

What I’d do next:

  1. Compare the USB’s reported used space vs free space.

    • If used space still looks close to normal, your files may still exist but the file system map is broken.
    • If the drive suddenly shows almost empty, then either entries were wiped or the partition got reset.
  2. Check for a corrupted partition layout in Disk Management.
    Sometimes the volume is there, but the partition type or size looks wrong. That points more to partition/file system damage than true deletion.

  3. If the files matter, make an image of the USB first, then scan the image.
    This is the part I think @kakeru was right to emphasize indirectly: less stress on the original device is usually smarter.

  4. Scan with recovery software before doing more repairs.
    Disk Drill is a reasonable choice here because it is easy to use, previews files, and can work well when files disappeared after an unsafe unplug.

Disk Drill pros:

  • simple interface
  • preview for photos/docs
  • can recover deleted files and lost partitions
  • imaging option is useful

Disk Drill cons:

  • free recovery limits depend on platform/version
  • deep scans can be slow
  • folder/file names are not always preserved if file system damage is severe

If you recover anything, save it to your PC, never back to the same USB. After that, honestly, I would retire the stick if this happened once already. USB flash drives love acting normal right before failing for real.

So yes, @mikeappsreviewer, @vrijheidsvogel, and @kakeru covered the common fixes. I’d just put more weight on imaging plus scanning first, and less on trying to “repair” the drive while your only copy of the data is still sitting on it.