123456789101112131415161718192021222324 |
- using System.IO.Abstractions;
- namespace Terminal.Gui;
- internal class DefaultSearchMatcher : ISearchMatcher
- {
- private string [] terms;
- public void Initialize (string terms) { this.terms = terms.Split (new [] { " " }, StringSplitOptions.RemoveEmptyEntries); }
- public bool IsMatch (IFileSystemInfo f)
- {
- //Contains overload with StringComparison is not available in (net472) or (netstandard2.0)
- //return f.Name.Contains (terms, StringComparison.OrdinalIgnoreCase);
- return
- // At least one term must match the file name only e.g. "my" in "myfile.csv"
- terms.Any (t => f.Name.IndexOf (t, StringComparison.OrdinalIgnoreCase) >= 0)
- &&
- // All terms must exist in full path e.g. "dos my" can match "c:\documents\myfile.csv"
- terms.All (t => f.FullName.IndexOf (t, StringComparison.OrdinalIgnoreCase) >= 0);
- }
- }
|