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?
|
feedback
|
|
Use DriveInfo to determine if the drive is ready.
| |||
|
feedback
|
|
This can also, of course, be achieved using Linq:
| |||
|
feedback
|