A Amjad Oct 20, 2003 #1 How do I search the hard drive for a particular file and return its path (location) to the user?
A Armin Zingler Oct 20, 2003 #2 Amjad said: How do I search the hard drive for a particular file and return its path (location) to the user? Click to expand... Write a procedure using System.IO.DirectoryInfo to process a directory. The procedure can call itself recursively. see also: http://msdn.microsoft.com/library/en-us/vbcn7/html/vaconCreatingRecursiveProcedures.asp
Amjad said: How do I search the hard drive for a particular file and return its path (location) to the user? Click to expand... Write a procedure using System.IO.DirectoryInfo to process a directory. The procedure can call itself recursively. see also: http://msdn.microsoft.com/library/en-us/vbcn7/html/vaconCreatingRecursiveProcedures.asp
H Herfried K. Wagner [MVP] Oct 20, 2003 #3 * "Amjad said: How do I search the hard drive for a particular file and return its path (location) to the user? Click to expand... <http://www.mvps.org/dotnet/dotnet/samples/filesystem/downloads/RecursiveFileScan.zip>
* "Amjad said: How do I search the hard drive for a particular file and return its path (location) to the user? Click to expand... <http://www.mvps.org/dotnet/dotnet/samples/filesystem/downloads/RecursiveFileScan.zip>