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# code ? )and search the media files like .mp3,.mp4,...etc . How can i do that by c# desktop application?
|
feedback
|
|
try this:
| |||
|
feedback
|
|
Rather than a brute-force iterative search through directories, I recommend looking into using the Windows Desktop Search API, which will be orders of magnitude faster. http://stackoverflow.com/questions/870101/windows-desktop-search-via-c | |||
|
feedback
|
|
| |||
|
feedback
|
|
To get your drive list:
To get all your files:
To get all your files using recursion:
Filter using Manu's answer | |||
|
feedback
|