Filters files by name starting with specific text.
public static System.Collections.Generic.IEnumerable<Atypical.VirtualFileSystem.Core.Contracts.IFileNode> WithNameStartingWith(this System.Collections.Generic.IEnumerable<Atypical.VirtualFileSystem.Core.Contracts.IFileNode> files, string prefix, bool ignoreCase=true);files System.Collections.Generic.IEnumerable<IFileNode>
The files to filter.
prefix System.String
The prefix to search for.
ignoreCase System.Boolean
Whether to ignore case. Default is true.
System.Collections.Generic.IEnumerable<IFileNode>
Files with names starting with the specified prefix.