ACAT.Lib.Core.PanelManagement.PanelConfigMap.load C# (CSharp) Method

load() private static method

Walks the specified directory (rescursively) to look for files
private static load ( String dir, bool resursive = true ) : void
dir String Directory to walk
resursive bool Recursively search?
return void
        private static void load(String dir, bool resursive = true)
        {
            var walker = new DirectoryWalker(dir, "*.*");
            Log.Debug("Walking dir " + dir);
            walker.Walk(new OnFileFoundDelegate(onFileFound));
        }