internal FSEnumerator(string rootFolder, EnumertorType type = EnumertorType.FilesOnly)
 {
     this._type = type;
     this._currentEnumerator = new FolderEnumerator(rootFolder);
 }
 public FileSystemEnumerator(string rootFolder, EnumertorType type = EnumertorType.FilesOnly)
 {
     this._type       = type;
     this._rootFolder = rootFolder;
 }