using System.IO; namespace BinaryObjectScanner.Matching { /// /// File path matching criteria /// public class FilePathMatch : PathMatch { /// /// Constructor /// /// String representing the search public FilePathMatch(string needle) : base($"{Path.DirectorySeparatorChar}{needle}", false, true) { } } }