| Overloads | |
|---|---|
| FindDirectories(Func<IDirectoryNode,bool>) | Finds all directory nodes that match the specified predicate. |
| FindDirectories(Regex) | Finds all directory nodes that match the specified regular expression. The regular expression must be relative to the root directory. |
Finds all directory nodes that match the specified predicate.
public System.Collections.Generic.IEnumerable<Atypical.VirtualFileSystem.Core.Contracts.IDirectoryNode> FindDirectories(System.Func<Atypical.VirtualFileSystem.Core.Contracts.IDirectoryNode,bool> predicate);
predicate System.Func<IDirectoryNode,System.Boolean>
The predicate.
Implements FindDirectories(Func<IDirectoryNode,bool>)
System.Collections.Generic.IEnumerable<IDirectoryNode>
The directory nodes.
Finds all directory nodes that match the specified regular expression. The regular expression must be relative to the root directory.
public System.Collections.Generic.IEnumerable<Atypical.VirtualFileSystem.Core.Contracts.IDirectoryNode> FindDirectories(System.Text.RegularExpressions.Regex regexPattern);
regexPattern System.Text.RegularExpressions.Regex
The regular expression pattern.
Implements FindDirectories(Regex)
System.Collections.Generic.IEnumerable<IDirectoryNode>
The directory nodes.