vote up 2 vote down star
1

I am programing under windows, c++, mfc How can I know disk's format by path such as "c:\". Does windows provide such APIs?

Many thanks!

flag

56% accept rate
GetVolumeInformation() can tell you if a volume supports encryption/compression/hardlinks etc. You should use those flags and not the name of the filesystem if you need to make sure the volume supports a specific feature. (Remember NTFS/FAT* are not the only filesystems on windows, even tho they are the only ones supported out of the box) – Anders Aug 10 at 17:20

4 Answers

vote up 8 vote down check

The Win32API function ::GetVolumeInformation is what you are looking for.

From MSDN:

GetVolumeInformation Function

BOOL WINAPI GetVolumeInformation(
    __in_opt   LPCTSTR lpRootPathName,
    __out      LPTSTR lpVolumeNameBuffer,
    __in       DWORD nVolumeNameSize,
    __out_opt  LPDWORD lpVolumeSerialNumber,
    __out_opt  LPDWORD lpMaximumComponentLength,
    __out_opt  LPDWORD lpFileSystemFlags,
    __out      LPTSTR lpFileSystemNameBuffer, // Here
    __in       DWORD nFileSystemNameSize
);

Example:

TCHAR fs [MAX_PATH+1];
::GetVolumeInformation(_T("C:\\"), NULL, 0, NULL, NULL, NULL, &fs, MAX_PATH+1);
// Result is in (TCHAR*) fs
link|flag
vote up 1 vote down

GetVolumeInformation will give you what you need. It will return the name of the drive format in lpFileSystemNameBuffer.

If you want a nice wrapper around it, you might want to look at Microsoft's CVolumeMaster.

link|flag
vote up 1 vote down

The Win32_LogicalDisk class in WMI has a FileSystem Property that exposes that information.

link|flag
vote up 2 vote down

Yes it is GetVolumeInformation.

TCHAR szVolumeName[100]    = "";
TCHAR szFileSystemName[10] = "";
DWORD dwSerialNumber       = 0;
DWORD dwMaxFileNameLength  = 0;
DWORD dwFileSystemFlags    = 0;

if(::GetVolumeInformation("c:\\",
                            szVolumeName,
                            sizeof(szVolumeName),
                            &dwSerialNumber,
                            &dwMaxFileNameLength,
                            &dwFileSystemFlags,
                            szFileSystemName,
                            sizeof(szFileSystemName)) == TRUE)
  {
    cout << "Volume name = " << szVolumeName << endl
         << "Serial number = " << dwSerialNumber << endl
         << "Max. filename length = " << dwMaxFileNameLength
         << endl
         << "File system flags = $" << hex << dwFileSystemFlags
         << endl
         << "File system name = " << szFileSystemName << endl;
  }
link|flag
Many Thanks~~~~ – sxingfeng Aug 10 at 2:21
You are welcome. – adatapost Aug 10 at 2:29

Your Answer

Get an OpenID
or

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