Load Files by Path
Files can be add in a Filestar session by entering paths.
Last updated
Files can be add in a Filestar session by entering paths.
Last updated
Glob syntax is a way of specifying sets of filenames with wildcard characters. Here's a comprehensive explanation of different types of glob syntax:
Asterisk (*): Matches any number of characters (including none). For instance, *.txt
matches any file with an .txt
extension.
Question Mark (?): Matches any single character. For example, ?.txt
would match a.txt
, b.txt
, but not ab.txt
.
Character Ranges [ ]: Matches any one of the enclosed characters. A range of characters can be specified with a dash. For example, [a-c].txt
matches a.txt
, b.txt
, and c.txt
.
Negated Character Ranges [! ]: Matches any character not enclosed. For example, [!a-c].txt
would match d.txt
but not a.txt
, b.txt
, or c.txt
.
Curly Braces { }: Matches any of the comma-separated patterns inside the braces. For example, {file, test}.txt
matches file.txt
and test.txt
.
Literal Match: Any character not part of a special glob pattern (like *
, ?
, [ ]
, { }
) matches itself.
Backslash Escaping: A backslash can be used before a special character to treat it as a regular character. For example, \\*
would match an actual asterisk *
.
Globstar: Used to match directories and files within. For example, **/*.txt
matches all .txt
files in all directories and subdirectories.