Glob class
A Pattern that matches against filesystem path-like strings with wildcards.
The pattern matches strings as follows:
- The whole string must match, not a substring
- Any non wildcard is matched as a literal
- '*' matches one or more characters except '/'
- '?' matches exactly one character except '/'
- '**' matches one or more characters including '/'
- Implemented types
Properties
Methods
-
allMatches(
String str, [int start = 0]) → Iterable< Match> -
Matches this pattern against the string repeatedly.
override
-
hasMatch(
String str) → bool -
matchAsPrefix(
String string, [int start = 0]) → Match? -
Matches this pattern against the start of
string
.override -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
override