vote up 5 vote down star
3

In C# how do you detect is a specific drive is a Hard Drive, Network Drive, CDRom, or floppy?

flag
Just what I needed! Thanks – StubbornMule Sep 29 '08 at 14:03

5 Answers

vote up 11 vote down check

The method GetDrives() returns a DriveInfo class which has a property DriveType that corresponds to the enumeration of System.IO.DriveType:

public enum DriveType
{
    Unknown,         // The type of drive is unknown.  
    NoRootDirectory, // The drive does not have a root directory.  
    Removable,       // The drive is a removable storage device, 
                     //    such as a floppy disk drive or a USB flash drive.  
    Fixed,           // The drive is a fixed disk.  
    Network,         // The drive is a network drive.  
    CDRom,           // The drive is an optical disc device, such as a CD 
                     // or DVD-ROM.  
    Ram              // The drive is a RAM disk.   
}

Here is a slightly adjusted example from MSDN that displays information for all drives:

    DriveInfo[] allDrives = DriveInfo.GetDrives();
    foreach (DriveInfo d in allDrives)
    {
        Console.WriteLine("Drive {0}, Type {1}", d.Name, d.DriveType);
    }
link|flag
vote up 0 vote down

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

link|flag
vote up 1 vote down
system.IO.DriveInfo.GetDrives(0).DriveType
link|flag
Please don't downvote this one. All three answers came within a minute, so it's only coincidence. – Biri Sep 29 '08 at 14:00
@Biri: Don't tell people not to downvote, just upvote if you think the answer is good. – Rich B Sep 29 '08 at 14:02
@Rich B: I didn't tell, I asked, which is a big difference. BTW I upvoted it of course. – Biri Sep 29 '08 at 14:06
@Biri: 'Asking' implies a question, which is not what your statement was. Upvoting this answer is a bit ridiculous IMO, since it is wrong. – Rich B Sep 29 '08 at 14:08
@Rich B: Come on! Don't be so hard. He can also correct his one, as you also extended your one. We can also argue on the word 'ask', as English is not my native language and I was tought that this word can mean a request. And we can continue on :-P – Biri Sep 29 '08 at 14:13
show 1 more comment
vote up 3 vote down

Check System.IO.DriveInfo class and DriveType property.

link|flag
vote up 5 vote down

DriveInfo.DriveType should work for you.

DriveInfo[] allDrives = DriveInfo.GetDrives();

foreach (DriveInfo d in allDrives)
{
    Console.WriteLine("Drive {0}", d.Name);
    Console.WriteLine("  File type: {0}", d.DriveType);
}
link|flag

Your Answer

Get an OpenID
or

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