Class WildcardMatcher


  • public class WildcardMatcher
    extends Object
    Utility class that can be used to "glob" the filesystem using (extended) Unix-style wildcards:
    1. '**' recursively matches directories and sub-directories;
    2. '*' matches parts or entire path names;
    3. '?' matches single characters;
    4. and character ranges expressed with '[]' will be correctly matched.
    However, no tilde expansion is done.
    Since:
    BEAM 4.10
    See Also:
    Patterns in the Ant documentation