I need to programmatically determine out how many sectors, heads, and cylinders are on a physical disk from Windows XP. Does anyone know the API for determining this? Where might Windows expose this information?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use DeviceIoControl with control code IOCTL_DISK_GET_DRIVE_GEOMETRY or IOCTL_DISK_GET_DRIVE_GEOMETRY_EX. There's sample code in MSDN to do this here. |
|||
|
|
|
There's a control code you can pass to DeviceIoControl to get the physical disk geometry. |
|||
|
|
|
WMI is good at this too, I've used it with great success.
For a list of additional drive properties you can use, check out this page |
|||
|
|