Tagged Questions

4
votes
2answers
731 views

Getting CD Drive letter in VB.Net

I am using the following code to get a list of the letters for each drive on my computer. I want to get the drive letter of CD Drive from this list. Please advise how to check it. The code I am ...
1
vote
1answer
637 views

Getting icons of Drives and Directories: Icon.ExtractAssociatedIcon(filePath) doesn't work?

If Icon.ExtractAssociatedIcon(filePath) is the only way to get icons in .NET && if it doesn't work for Drives and Directories (does it?) then how do you go about getting the icons for them? ...
1
vote
1answer
769 views

System.IO.DriveInfo.GetDrives() hangs with disconnected network drives

I am writing a file manager in .NET 3.5. At startup, the application must enumerate available drives. I am using DriveInfo.GetDrives to do that. Unfortunately my users lamented that, when they have ...
0
votes
1answer
31 views

WinXP shared drives issue

I have an app in .NET that writes some really small files (2k-40k) on some network shared drives. These network shared drives are on another WinXP machine. The issue I'm having is that the app is able ...
0
votes
2answers
216 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 ...