예제 #1
0
파일: Matcher.cs 프로젝트: batzen/glob
 public static bool MatchesSegment(this DirectorySegment segment, string pathSegment, bool caseSensitive) =>
 MatchesSubSegment(segment.SubSegments, 0, -1, pathSegment, 0, caseSensitive);
예제 #2
0
 public static bool MatchesSegment(this DirectorySegment segment, string pathSegment) =>
 MatchesSubSegment(segment.SubSegments, 0, pathSegment, 0);