Note: an empty path pattern matches no path.
Note: path patterns only match against the corresponding elements of the path and do not distinguish between absolute and relative paths.
Note: there is no way to escape {@code *} and {@code **}.
Examples:
q matches q only * matches every path containing a single element ** matches every path a/b/c matches a/b/c only a/*/c matches a/x/c for every element x **/y/z match every path ending in y/z r/s/t/** matches r/s/t and all its descendants
|
|