Tagged Questions
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
4answers
523 views
how to search media file in our system by c#?
I want to search the media files situated in my system by c#. means I want to create the search engine that will scan all drives (again small question here , how to get the drives on our system by c# ...
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 ...