2016-05-24 10 views
0

Ok, so das mein Problem ist derzeit:Hier finden Sie eine Liste der Unterverzeichnisse unter einem Verzeichnis

Das ist mein Haupt ist:

//System prompts user the type of archiving which will direct to the correct directory to set as root 
Console.WriteLine("Enter the type of archiving you would like to do?"); 
string archivetype = Console.ReadLine(); 

//function that identifies which candidates to archive 
Archive(archivetype, 20, 20); 

//keep the application in debug mode 
Console.ReadKey(); 

Die Archivierungsmethode:

//Archive method determines which directory to search in and how many versions to archive 
static void Archive(string archivetype, int pversion, int version) 
{ 
    //regex pattern to get folder names of the type #.#.#.#/#. something 
    Regex reg = new Regex(@"\d+(\.\d+)+"); 
    //setting where to start looking 
    DirectoryInfo root = new   DirectoryInfo(@"C:\Users\jphillips\Desktop\test\parent\ACE-3_0"); 
    var dirs = new List<DirectoryInfo>(); 
    //i want to make a recursive call to all the folders in my root directory to obtain all the folders with the regex pattern above that are not empty and do not have 3 files inside 
    WalkDirectoryTree(root);  
} 

schließlich gehen Verzeichnisbaum Methode

//so im using the walk directory tree on the microsoft website i need a way to have a sort of a global array to keep adding the directories that fit through the patterns mentioned above without resetting itself after each walkdirectorytree call 
static void WalkDirectoryTree(System.IO.DirectoryInfo root) 
{ 
    DirectoryInfo[] subDirs = null; 

    // Now find all the subdirectories under this root directory. 
    subDirs = root.GetDirectories(); 

    foreach (DirectoryInfo dir in subDirs) 
    { 
     //dirs is not global so it doesnt work here and i believe if i put a local array that it will reset itself everytime 
     dirs = root.GetDirectories("*", SearchOption.TopDirectoryOnly).Where(d => reg.IsMatch(d.Name)).ToList(); 
     if() 
     WalkDirectoryTree(dir); 
    } 
} 

so bin ich wirklich verloren an dieser Stelle möchte ich walkdirectorytree aufrufen können, um durch alle meine Ordner und Unterordner meines Verzeichnisses recursevely zu extrahieren, die Pfade, die das Regex-Muster haben und die nicht leer sind und nicht 3 Dateien innerhalb tp geben mir eine Liste dieser Ordner Pfade.

Antwort

1

Sie können alle Ordner und Unterordner in einem einzigen Anruf mit dieser Überladung von GetDirectories abrufen.

Sie übergeben eine Suchzeichenfolge - aber leider kein Regex und SearchOption.AllDirectories als zweites Argument. Sie können dann die Ergebnisse durch Ihre Regex übergeben, um diejenigen zu finden, die Sie interessiert sind.

+0

OK also das ist, was ich tun werde: dirs = root.GetDirectories ("*", SearchOption.AllDirectories) .Where (d => reg.IsMatch (d.Name)). ToList(). Wählen Sie (w => w.); – PhillipsJP

+0

in der Auswahl wie ich würde ich zum Beispiel entfernen, wenn mein Ordner TESTS am Ende davon hat. ein normales Format wäre also 4.3.2.4, aber einige Ordner haben 4.45.3.3_TESTS – PhillipsJP

+0

@PhillipsJP Eine Arbeitsregex für diesen Fall zu bekommen könnte eine eigene Frage wert sein. – ChrisF