File Search in .NET?
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Hi, Is there any method to search for the file in the entire drive when only filename(without path) is given? regards jyothi
You can have a look at the System.IO.Directory namespace - it has a lot of uselfull methods. Maybe something like - System.IO.Directory.GetFileSystemEntries(@"c:\","myfileName.*");