What is the difference between "used space", "size" and "size on disk"?

  1. There's some files and folders that you don't have access to, even as Administrator. System Volume Information is one such folder.
  2. You can't directly see some items that take up space, like the MFT and USN Journal.
  3. On Vista & 7, the Windows directory is densely hardlinked. Explorer is unable to handle this and will count files with n hardlinks n times.
  4. Explorer doesn't take NTFS Alternate Data Streams into account.
  5. Files locked for exclusive use won't be counted either.

**No matter what you do, you're not going to be able to select all the files/folders on the drive and make the number match the drive's properties.

As for "size" vs "size on disk", there's several things that make the two differ. "Slack space", as mentioned by the others are the most common. But files stored with NTFS compression may take up less space on disk, affecting Explorer's display. Sparse files, offline files, and other special attributes can also cause the 2 to differ significantly.

**You can use a linux based os or a live cd to see all the hidden folders. For Windows 7 one of those folders is called ProgramData and it accounts for the big difference in size reports.


  1. Are you sure you selected everything? No hidden files in the root of C:\ that you missed? e.g. your page file or hibernate file?
  2. Size refers to the sum of the total bytes in the file whereas size on disk refers to how much space they are taking up on the disk. File sizes are aligned to multiples of 4K boundaries (it's faster), so a 1 byte file still takes up 4K on the disk.

For the totals to come close, you also need to uncheck "Hide protected operating system files (Recommended)".

Get there from Windows Explorer by pressing Alt+T, then clicking on Folder Options, then the View tab.

Otherwise, selecting all files is not selecting pagefile.sys, which is typically about 4 GB.


Size and size on disk are different because of how hard drives and file systems work.

Every file uses a certain number of blocks. Typically a block would be about 4 KB. So when you save a file that's 1 KB, it actually uses up 4 KB of disk space. A 5 KB file uses 8 KB, etc.


Update

Found a thread on MSDN called NTFS Misreports Free Space?.

It suggests running chkdsk to see a more detailed breakdown. Note that you must run it as Administrator.

Tags:

Windows 7