Help Needed! My Files Disappeared From External Hard Drive And I Have No Backup

My files suddenly disappeared from my external hard drive, and I do not have a backup. The drive is detected, but the folders look empty, and I am worried the data may be lost. I need help figuring out what caused this and the safest way to recover the missing files without making things worse.

I went through almost the same mess. My external drive still showed up in Windows, looked normal at first glance, then whole folders were gone. I thought I nuked years of files. What I found later was file system damage, not instant deletion, and most of the data was still sitting there.

If your drive still mounts, I’d treat that as a decent sign. Don’t get too relaxed though. The first moves matter a lot, and bad advice in the first ten minutes is how people turn a recoverable drive into a worse one.

So first, stop writing anything to it. Don’t copy files onto it. Don’t format it. Don’t run CHKDSK yet. Don’t hit random “repair” buttons from Windows either. Those actions write changes to the file system, and if your missing data is still present, you want it left alone for now.

A few quick checks are worth doing before you run recovery tools:

  1. In File Explorer, enable Hidden items. I’ve seen files look “gone” when they were only hidden.
  2. Look at used space on the drive. If the folders look empty but the drive still shows most of its capacity as used, I’d take that as a good sign. Usually it means the files are still there and Windows has lost track of them.
  3. Swap the USB cable, then try a different port. Sounds dumb, but I’ve had flaky cables make a drive behave like it was dying.

If those checks don’t fix it, and you don’t have a backup, I’d go straight to recovery software before trying repairs.

I’d start with Disk Drill. I used it because the layout was easy enough and it handled the sort of file system mess I was dealing with. The part I liked most was the disk imaging option. This matters more than people think. A disk image is a full copy of the drive, sector by sector, including damaged metadata, deleted entries, and whatever else still exists on it. If your external drive keeps disconnecting, freezes during reads, or feels unstable, working from an image is safer than hammering the original drive over and over.

This is the order I’d follow:

  1. Install Disk Drill on your internal drive, or on another known-good drive. Do not install it onto the external drive with the missing files.
  2. Plug in the external drive and open Disk Drill.
  3. If the drive is unstable, make a disk image first with the built-in imaging tool. Scan the image file after, not the physical drive.
  4. If the drive seems stable, select it and click Search for lost data.
  5. When it asks for scan type, I’d pick Universal Scan. It rolls multiple methods into one pass, including deleted file recovery, lost partition detection, damaged file system record checks, and signature-based recovery. Saves you from guessing.
  6. Let the scan finish. On a big drive, this can drag on for a while. I know it’s annoying. Still worth waiting, because I’ve seen more recoverable files show up near the end.
  7. Go through the results, use filters if needed, preview the files you care about most, then mark what you want back.
  8. Hit Recover and save everything to a different drive. Not the same external drive. Never the same one.

On Windows, one small upside is the free tier. Disk Drill lets you recover up to 100 MB for free. That won’t save a huge archive, obviosuly, but it’s enough to test whether your important files are intact before spending money.

I wouldn’t try repairing or reformatting the original drive until the important data is copied somewhere safe.

There is one case where I’d stop and skip software first. If the drive clicks, grinds, drops connection every few minutes, reads at a crawl, or disappears from Windows off and on, I’d assume hardware trouble. At that point, repeated power cycles and repeated scans are a bad bet. I’d unplug it and send it to a recovery lab instead.

After recovery, I’d think hard about retiring the drive. File loss usually doesn’t happen for no reason. If this came from one bad unplug event, a reformat might be enough and the drive might keep working. If it starts vanishing from Windows, shows bad sectors, or loses data again, I wouldn’t trust it with anything you care about. Drives are cheap compared to family photos, work files, tax docs, all the annoying stuff you can’t replace. I’d pull the data off, replace the drive if there’s any doubt, and keep a second copy somewhere else next time.

3 Likes

If the drive shows up and the folders look empty, I’d check for a file system issue or malware before I assume full deletion. @mikeappsreviewer covered the recovery-first angle well. I agree with most of it, but I would add two things.

First, open Disk Management and see if the partition size looks normal. If your 2 TB drive suddenly shows RAW, unallocated, or a weird smaller size, the problem is often partition damage. If the used space still looks full, your files are often still there.

Second, run an attribute check from Command Prompt on the external drive:
attrib -h -r -s /s /d X:*.*

Replace X with your drive letter. I’ve seen USB malware flip folders to hidden/system, which makes everything look gone. Takes 10 seconds to test.

I would also check SMART health with CrystalDiskInfo before a long scan. If health is bad, or reallocated/pending sectors are climbing, stop poking at it. One long scan on a failing drive is how people make a bad day worse.

If the drive health looks stable, Disk Drill is a fair choice for scanning and previewing files. I’d use it after the hidden-attribute test and drive health check, not before. If you want extra reading, this thread on best data recovery software tips from Reddit users is worth a look.

Also, if this happened after moving the drive between Mac and Windows, look for file system mismatch issues. exFAT corruption is annoyngly common after unsafe ejects.

If the drive is still detected and the space on it is still mostly used, I actually would not jump to “the files are gone.” That usually points to directory/index damage, not instant wipeout. @mikeappsreviewer and @yozora already covered the obvious first-aid stuff, so I’d look at one extra angle: test whether Windows is failing to enumerate the folders correctly.

Try opening the drive in Command Prompt and manually listing it:
dir X:\ /a

Then try a deeper listing:
dir X:\ /a /s > C:\drive-list.txt

If the command line sees files that Explorer does not, that tells you the problem is more about how the file system is being presented than total loss. Weird, but it happens.

Also, check Event Viewer under Windows Logs > System for disk, ntfs, or volmgr errors around the time the folders vanished. If you see I/O errors, delayed write failures, or reset-to-device messages, that leans more toward hardware trouble than simple corruption. People skip this step way too often.

One small disagreement with the usual advice: I would not spend too long doing “maybe it’s just hidden files” experiments if the data matters a lot. A few quick checks, sure. But after that, move to recovery strategy fast.

If the drive is stable enough to read, Disk Drill is still a sensible option because it can scan for lost folder structure and recover files to another disk. If it starts hanging, slowing to a crawl, or disconnecting, stop messing with it and image it first or hand it off to a lab.

Also worth reading: best hard drive data recovery software tips

Short version: don’t write to it, don’t repair it yet, verify whether the files are truly absent at the file-system level, then use proper hard drive data recovery software if needed. And yeah, if this drive has started acting sketchy once, I wouldnt trust it again for anything important.

One angle I’d add that @yozora, @viaggiatoresolare, and @mikeappsreviewer only touched indirectly: check whether the data is there but the folder tree got detached from the volume metadata.

Open PowerShell and run:

Get-ChildItem X:\ -Force -Recurse -ErrorAction SilentlyContinue | Measure-Object

If it returns a big file count, Windows may be failing to show the structure properly, not that the files are fully gone. I slightly disagree with spending much time in Explorer tests if the drive has anything irreplaceable. Explorer lies more often than people think when permissions, index records, or bad directory entries get weird.

Another useful check is Properties > Tools > Error checking, but only to view status, not to repair yet. If Windows is already flagging the file system as dirty, that tells you corruption is likely. I still would not let Windows “fix” it before recovery.

If you recover, sort by file type first, not folder name. With damaged metadata, folder reconstruction is hit or miss, but raw file recovery can still save photos, docs, and videos.

Disk Drill is reasonable here if the drive stays online.

Pros:

  • easy preview
  • can find both lost structure and raw files
  • imaging support is useful

Cons:

  • deep scans can take forever
  • file names/folders are not always preserved
  • free recovery limit on Windows is tiny

If the drive is physically healthy, it’s a good first software pass. If it starts disconnecting, stop and clone first or go lab route.