在Windows编程中,我们如何找出硬盘上的分区数量和每个分区的名称?
答案 0 :(得分:3)
您可以将DeviceIoControl
函数与IOCTL_DISK_GET_DRIVE_LAYOUT_EX控制代码一起使用,以获取分区列表。
答案 1 :(得分:1)
关于如何在MSDN上执行此操作非常good article。它使用GetLogicalDrives
,GetLogicalDriveStrings
,GetDriveType
和GetVolumeInformation
函数。你可以download the source from here。