Searching directories

  • Thread starter Thread starter mariovargas
  • Start date Start date
M

mariovargas

Guest
Hi all,

Ive to search for a directory in the whole machine (every local drive). How can I do it with the System.IO?

Thanks in advance

God Bless.

PD. Im working with C#, but I suppose that a solution in VB should work in C#.
 
A recursive function utilizing System.IO.Directory.GetDirectories() and System.IO.Directory.GetFiles() should work quite well.
 
Back
Top