up vote 2 down vote favorite
share [g+] share [fb]

I need to find the cluster size of the users hard drive, through C or C++. The hard drive uses NTFS (though I'd appreciate knowing how it's done on other file systems as well).

I guess what I need is some combination of win32 API calls, but I don't know which.

For instance, typing "fsutil fsinfo ntfsinfo c:" in the windows console gives you "Bytes per cluster", which is what I need. (Though for obvious reasons, I don't want to run that command and parse it's output.)

Free awesome-points to anyone who knows this.

link|improve this question
Keep in mind that this doesn't tell you a whole lot. Small files can be stored in the directory node itself. – MSalters Jul 2 '09 at 15:25
FWIW, a file system's cluster size is sometimes also referred to as its "allocation unit" size, e.g.: msdn.microsoft.com/en-us/library/aa383356(VS.85).aspx. – Reuben Jul 5 '09 at 8:17
feedback

1 Answer

Use the GetDiskFreeSpace

BOOL WINAPI GetDiskFreeSpace(
  __in   LPCTSTR lpRootPathName,
  __out  LPDWORD lpSectorsPerCluster, // <--
  __out  LPDWORD lpBytesPerSector, // <--
  __out  LPDWORD lpNumberOfFreeClusters,
  __out  LPDWORD lpTotalNumberOfClusters
);
link|improve this answer
Awesome points to you! – larspars Jul 2 '09 at 10:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.