Function: glob

glob(patterns): Promise<string[]>

Performs a glob search on the files in a workspace. Paths should be unix-style with forward slashes.

Parameters

NameTypeDescription
patternsstring[]A list of glob patterns

Returns

Promise<string[]>

Normalized paths in the workspace that match the provided glob patterns.

glob(tree, patterns): Promise<string[]>

Performs a tree-aware glob search on the files in a workspace. Able to find newly created files and hides deleted files before the updates are committed to disk. Paths should be unix-style with forward slashes.

Parameters

NameTypeDescription
treeTreeThe file system tree
patternsstring[]A list of glob patterns

Returns

Promise<string[]>

Normalized paths in the workspace that match the provided glob patterns.