I emptied my hard drive, but it still has 9GB on it

7

1

I have a secondary disk drive 465GB as reported by Windows explorer.

I'm going to install a secondary O/S on it, so I moved EVERYTHING on it to another drive.

Windows explorer STILL reports 9.27GB of used space on the 465GB hard drive!

Windows file explorer shows nothing on the disk, and I've turned "Show hidden files" ON.

What could possibly be taking up 9.27GB of space? Is there a tool to see what is going on?

bobobobo

Posted 2009-07-24T21:07:28.073

Reputation: 4 632

Answers

5

Well, there might still be a non-empty recycle bin. And the folder System Volume Information which (for system disks) contains recovery snapshots which can get quite large. Aprt from that I don't really know. It can happen, though, that the amount of free space isn't accurate due to some file system corruption. In most occasions this is harmless but running chkdsk should fix it.

In any case, if you want to install another operating system on it, I'd suggest you format the drive to start with a clean partition for the new OS. Then you also know precisely that nothing else is on there :-)

ETA: kquinn made a good point as well: The Master File Table (MFT) might get pretty large if you had lots of files on that disk. It takes up a little space + around 512 bytes per file. But for that to fill 9 GiB you'd have to have almost 19 million files. I know I regularly have a few hundred thousand but that much seems unlikely. Especially because all those files are probably not just 1 KiB each.

Joey

Posted 2009-07-24T21:07:28.073

Reputation: 36 381

7

What could possibly be taking up 9.27GB of space?

The NTFS Master File Table typically reserves a bunch of space; 9GB sounds approximately right for a 465GB drive. Note that if you make a huge 464GB file, the MFT reserved space will automatically shrink (since that huge file only requires one MFT record -- the MFT reserves space for a worst-case scenario of zillions of small files, all requiring their own MFT entries).

Is there a tool to see what is going on?

Typically third-party disk defragmentation tools have some kind of 'cluster view' that lets you see exactly what's on the disk and where. There are also various command-line NTFS tools, but those can be extremely cumbersome to use on more than one or two files already known to be of interest.

kquinn

Posted 2009-07-24T21:07:28.073

Reputation: 780

+1 for the MFT, didn't think of that. 9 GiB sounds pretty much for the MFT. But that might depend on how many files there were on it before. – Joey – 2009-07-24T21:45:02.150

Yeah, the MFT does reserve a lot of space. But it's very pessimistic, and automatically shrinks if you need the space for something. The MFT doesn't use most space marked as MFT, it just reserves it for potential future use. – kquinn – 2009-07-24T23:28:15.113

2

Have you tried looking at the drive from another operating system? Usually the way they read file systems reveals more than Windows is willing to show. Linux live CDs are a good start.

Jonathan Prior

Posted 2009-07-24T21:07:28.073

Reputation: 601