private bool MatchPattern(string relativePath) { string fileName = System.IO.Path.GetFileName(relativePath); return((fileName != null) && PatternMatcher.StrictMatchPattern(this.filter.ToUpper(CultureInfo.InvariantCulture), fileName.ToUpper(CultureInfo.InvariantCulture))); }