How Much Space Do Empty Files Consume?

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?


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.