static void Main(string[] args) { Console.Write("\n Testing Filemanager"); Console.Write("\n ================"); string path = "../.."; bool s = true; FileManager fm = new FileManager(); fm.findFiles(path); List<string> files = fm.getFiles(path, fm.patterns, s); foreach (string file in files) Console.Write("\n {0}\n", file); Console.WriteLine(); }
public ProjectFileFinder(string _rootPath) { fileManager = new FileManager(); rootPath = _rootPath; }