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

Does anyone know a way to find out programatically which physical disk holds a given partition? Manually, I can find this info using Start->Run->diskmgmt.msc , where I can see that (on my computer) that partitions C: and D: are on disk 1, E: & F: on disk 0.

This is for optimizing some file crunching operations by doing them in parallel if the files are on different physical disks.

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

You can obtain this information using WMI from System.Management namespace by quering Win32_DiskDrive class.

Here's basic info about WMI in .NET.

link|improve this answer
feedback

In addition to Arul's answer, here's a link that shows how to geth the disk<->partition association using WMI from a VBS script: WMI Tasks: Disks and File Systems -> see the last example on the page.

Edit: Even better, here's a good article on WMI using C#, which just happens to also describe the exact relationships between the WMI classes needed to get the disk drive (e.g. \\\\.\\PHYSICALDRIVE0 ) that holds a logical disk (e.g. C:)

link|improve this answer
feedback

Are you sure the partition is associated with only one disk? It could be striped/spanned/etc across multiple physical disks.

link|improve this answer
Yeah, I'm aware of the possibility. I'm taking it one step at a time :) – Cristi Diaconescu Nov 18 '08 at 21:39
feedback

Your Answer

 
or
required, but never shown

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