I'm trying to recognize drives types by looping around DriveInfo.GetDrives() result. But for both USB and floppy I get the same DriveType.Removable value.

How can I distinguish between them?

Thanks! BP

link|improve this question
3  
Why do you want to do that? – František Žiačik Jun 17 '10 at 10:30
4  
Why do you need this? A naive attempt could checkeing the size of the drive. – Henrik Jepsen Jun 17 '10 at 10:32
I need that because of my program expects a USB drive, and I want to validate the user input. Check the size is not safe enouggh, there might be small-capacity USB devices as well. Thanks, – Break Point Jun 17 '10 at 10:34
Duplicate? stackoverflow.com/questions/1797128/… – Rulmeq Jun 17 '10 at 10:39
3  
try bending it? – Mitch Wheat Jun 17 '10 at 11:12
show 4 more comments
feedback

1 Answer

Edit: Didn't realize this was posted back in July. Oops.

Well, anyway: You can use WMI (Windows Management Instrumentation) to get more than just what's in the DriveInfo class. In this case, you can get the interface type, which will be "USB" for USB drives.

Sample code is below. You need to add a reference to System.Management.

try
{
    ManagementObjectSearcher searcher =
        new ManagementObjectSearcher("root\\CIMV2",
        "SELECT * FROM Win32_DiskDrive");

    foreach(ManagementObject queryObj in searcher.Get())
    {
        foreach(ManagementObject o in queryObj.GetRelated("Win32_DiskPartition"))
        {
            foreach(ManagementBaseObject b in o.GetRelated("Win32_LogicalDisk"))
            {
                Debug.WriteLine("    #Name: {0}", b["Name"]);
            }
        }
        // One of: USB, IDE
        Debug.WriteLine("Interface: {0}", queryObj["InterfaceType"]);
        Debug.WriteLine("--------------------------------------------");
    }
}
catch (ManagementException f)
{
    Debug.WriteLine(f.StackTrace);
}
link|improve this answer
3  
I see no reason to apologize for a late answer here. This isn't a forum, and unanswered question necromancy is encouraged if I'm not mistaken. – Greg Buehler Dec 23 '10 at 15:54
Necromancy. Excellent word usage! – Inuyasha Dec 23 '10 at 16:15
feedback

Your Answer

 
or
required, but never shown

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