I'm looking for a way to scan for hard disks without incurring the 'floppy tax' of the system attempting to read the floppy drive to see if there's a disk in there.

Important: I know how to use DriveInfo.GetDrives to get just hard disks, but that involves filtering after the list has been created. What I want to do is filter before, if it's possible.

link|improve this question

70% accept rate
2  
Yeah, "who uses floppies?" That's what I said too :) – Benjol Dec 13 '11 at 7:43
1  
Are we allowed to use a screwdriver as part of the answer... you know, to disconnect it and put something useful in its place? – Marc Gravell Dec 13 '11 at 7:50
@MarcGravell, it may yet come to that :) Honestly, I'm seriously considering it, as I'm apparently the only person who's bothered by it. – Benjol Dec 13 '11 at 7:52
I wonder if you could disable it at the device level (devmgmt.msc) – Marc Gravell Dec 13 '11 at 7:58
At BIOS level you sure could – Anton Dec 13 '11 at 8:13
feedback

2 Answers

up vote 2 down vote accepted

You can try this :

ConnectionOptions opts = new ConnectionOptions();
ManagementScope scope = new ManagementScope(@"\\.\root\cimv2", opts);
SelectQuery diskQuery = new SelectQuery("SELECT * FROM Win32_LogicalDisk WHERE (MediaType != 0 AND MediaType = 11 OR MediaType = 12)");

ManagementObjectSearcher searcher = new ManagementObjectSearcher(diskQuery);
ManagementObjectCollection diskObjColl = searcher.Get();

Media types 11 and 12 are not floppy. You can find full documentation here : http://msdn.microsoft.com/en-us/library/windows/desktop/aa394173%28v=vs.85%29.aspx

link|improve this answer
I'm marking this one as the 'right' answer, even though I'm actually using the other (because it runs faster), but with a debatable assumption: that A and B are the floppy drives to be avoided. – Benjol Dec 19 '11 at 9:24
feedback

Not as such... Drive info simply has no functions to filter or exclude any types of drives during a getDrives call.

But maybe there's another way. (This is untested but maybe an idea: ) If you're simply looking for the availability of specific drives, you can instantiate the DriveInfo class with the name of a specific drive and see if that works?

link|improve this answer
Good point, I could start at C, and work up from there based on System.Environment.GetLogicalDrives(). Nice. – Benjol Dec 13 '11 at 8:02
feedback

Your Answer

 
or
required, but never shown

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