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!
|
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!
|
||
|
|
|
The Win32API function ::GetVolumeInformation is what you are looking for. From MSDN:
Example:
|
|||
|
|
|
|
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. |
||
|
|
|
|
The Win32_LogicalDisk class in WMI has a FileSystem Property that exposes that information. |
||
|
|
|
|
Yes it is GetVolumeInformation.
|
||