rglob
rglob(
pattern:string,rootDir:string):Promise<string[]>
Defined in: packages/pythonlib/src/glob.node.ts:235
Return a list of all files matching pattern in directory and subdirectories. This is an alias for glob with recursive=true.
Parameters
| Parameter | Type | Default value | Description |
|---|---|---|---|
pattern | string | undefined | The glob pattern (without **) |
rootDir | string | "." | Root directory to search from |
Returns
Promise<string[]>
Promise of array of matching paths