Tagged Questions
0
votes
2answers
214 views
Getting logical drives
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 ...