Directory Walk
Lists files and directories at a given path, with support for recursion and glob filtering.
Inputs#
| Port | Description |
|---|---|
The path to the directory to search. Use a single dot (.) for the current working directory. |
|
A glob pattern to filter items. Multiple patterns can be separated by a semicolon (;). See Glob Pattern. |
|
| If true, searches the directory and all its subdirectories. | |
| If true, directories are included in the results. | |
| If true, files are included in the results. |
Outputs#
| Port | Description |
|---|---|
| Triggered when the directory walk completes successfully. | |
| Triggered if an error occurs, such as an invalid path, permission issues, or a bad glob pattern. | |
| The list of absolute paths for all found items. The item order matches the Relative Paths output. | |
| The list of paths for all found items, relative to the input Dir Path. The item order matches the Absolute Paths output. |
ID: core/dir-walk@v1