I use following code to get logical drives:

string[] strDrives = Environment.GetLogicalDrives();

but when I want to iterate through it, an exception occurs, with the message:

Drive Not Ready

How can I get just ready drives?

link|improve this question

70% accept rate
feedback

2 Answers

up vote 7 down vote accepted

Use DriveInfo to determine if the drive is ready.

foreach (var oneDrive in strDrives)
{
    var drive = new DriveInfo(oneDrive)
    if (drive.IsReady) 
    {
       // Do something with the drive...
    }
}
link|improve this answer
+1 ah- that's the much nicer solution than mine! – marc_s Nov 20 '09 at 16:45
feedback

This can also, of course, be achieved using Linq:

IEnumerable<DriveInfo> readyDrives = Environment.GetLogicalDrives()
    .Select(s => new DriveInfo(s))
    .Where(di => di.IsReady);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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