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