Class MatchGlob


public class MatchGlob
extends FilePathMatcher
Matches paths using a Java-style glob.

Please see FileSystem.getPathMatcher(java.lang.String) for the syntax of the glob.

In summary, a single wildcard like *.jpg will match only files in the top-level directory, whereas a double wildcard like **.jpg will match files in all subdirectories recursively.

Author:
Owen Feehan