| Overloads | |
|---|---|
| FindFiles(Func<IFileNode,bool>) | Finds all file nodes that match the specified predicate. |
| FindFiles(Regex) | Finds all file nodes that match the specified regular expression. |
Finds all file nodes that match the specified predicate.
public System.Collections.Generic.IEnumerable<Atypical.VirtualFileSystem.Core.Contracts.IFileNode> FindFiles(System.Func<Atypical.VirtualFileSystem.Core.Contracts.IFileNode,bool> predicate);
predicate System.Func<IFileNode,System.Boolean>
The predicate.
Implements FindFiles(Func<IFileNode,bool>)
System.Collections.Generic.IEnumerable<IFileNode>
The file nodes.
Finds all file nodes that match the specified regular expression.
public System.Collections.Generic.IEnumerable<Atypical.VirtualFileSystem.Core.Contracts.IFileNode> FindFiles(System.Text.RegularExpressions.Regex regexPattern);
regexPattern System.Text.RegularExpressions.Regex
The regular expression pattern.
Implements FindFiles(Regex)
System.Collections.Generic.IEnumerable<IFileNode>
The file nodes.