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
feedback
|
|
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
| |||||||
feedback
|