VirtualFileSystem

Atypical.VirtualFileSystem.Core

Atypical.VirtualFileSystem.Core.Contracts.IVirtualFileSystem

IVirtualFileSystem.FindFiles Method

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.

IVirtualFileSystem.FindFiles(Func<IFileNode,bool>) Method

Finds all file nodes that match the specified predicate.

System.Collections.Generic.IEnumerable<Atypical.VirtualFileSystem.Core.Contracts.IFileNode> FindFiles(System.Func<Atypical.VirtualFileSystem.Core.Contracts.IFileNode,bool> predicate);

Parameters

predicate System.Func<IFileNode,System.Boolean>

The predicate.

Returns

System.Collections.Generic.IEnumerable<IFileNode>
The file nodes.

IVirtualFileSystem.FindFiles(Regex) Method

Finds all file nodes that match the specified regular expression.

System.Collections.Generic.IEnumerable<Atypical.VirtualFileSystem.Core.Contracts.IFileNode> FindFiles(System.Text.RegularExpressions.Regex regexPattern);

Parameters

regexPattern System.Text.RegularExpressions.Regex

The regular expression pattern.

Returns

System.Collections.Generic.IEnumerable<IFileNode>
The file nodes.