using System.IO; namespace SabreTools.Matching { /// /// File path matching criteria /// public class FilePathMatch : PathMatch { /// /// Constructor /// /// String representing the search /// True to match exact casing, false otherwise public FilePathMatch(string needle, bool matchCase = false) : base($"{Path.DirectorySeparatorChar}{needle}", matchCase, true) { } } }