Exemple #1
0
 public static bool IsIncluded(string file, Glob[] globs)
 {
     return(globs.Length == 0 || GlobMatcher.IsMatch(file, globs));
 }
Exemple #2
0
 public static bool IsExcluded(string file, Glob[] globs)
 {
     return(globs.Length != 0 && GlobMatcher.IsMatch(file, globs));
 }