here is my code:
private static void TreeScan(string sDir) { foreach (string d in Directory.GetDirectories(sDir)) { forea
private static void TreeScan( string sDir ) { foreach (string f in Directory.GetFiles( sDir )) { //Save f :) } foreach (string d in Directory.GetDirectories( sDir )) { TreeScan( d ); } }