How Much Space Do Empty Files Consume?

6,459

From an MS article titled Optimizing NTFS:

All NT disk file systems, including NTFS, use the cluster as their basic unit of storage. Regardless of how small a file is, it must take up at least one cluster of disk space. Thus, very small files that are smaller than a cluster waste disk space. (Files that are less than 1KB are an exception. The system stores these files within the MFT File Record Segment—FRS—that refers to them, instead of storing them externally.) In addition, when a file doesn't end on an even cluster boundary, the file's spillover takes up another full cluster, wasting space. The larger the cluster that the file spilled over to, the more space is wasted.

The italicised portion tells you why empty files are reported as taking up no disk space (the space taken up by the file table entry is not included in the calculations).

Edit: Another useful article detailing the exact process followed.

Share:
6,459

Related videos on Youtube

kingsxi
Author by

kingsxi

(This space intentionally left blank)

Updated on September 18, 2022

Comments

  • kingsxi
    kingsxi over 1 year

    Windows reports both, empty files and folders, as taking up 0 bytes. Surely it takes something to store the file name, attributes, date [created/modified/accessed] etc.

    How is this weighted?

    • Admin
      Admin over 11 years
      I see you tagged this as [fat32] as well... Are you looking for information on both then?
    • Admin
      Admin over 11 years
      Wasn't sure how much of a difference it would make. I'm not as interested in how the data is stored as I am how to calculate the size of the metadata. Hopefully I'll have that solved after reading Karan's links.
    • Admin
      Admin over 8 years
  • mlhDev
    mlhDev over 4 years
    The PC Guide link is dead
  • EnE_
    EnE_ over 4 years
    Link fixed. Pointing to WayBack Machine version.