In C# how do you detect is a specific drive is a Hard Drive, Network Drive, CDRom, or floppy?
|
|
The method GetDrives() returns a DriveInfo class which has a property DriveType that corresponds to the enumeration of System.IO.DriveType:
Here is a slightly adjusted example from MSDN that displays information for all drives:
|
||
|
|
|
|
How can I detect the difference between a CD and a DVD drive, and the difference between a floppy drive and a USB? They have the same DriveType... |
||
|
|
|
|
|
||||||||||
|
|
|
Check System.IO.DriveInfo class and DriveType property. |
||
|
|
|
|
DriveInfo.DriveType should work for you.
|
||
|
|
