Filepath Join From Array
This node takes an array of strings and joins them together to form a single filepath.
| Platform |
Input |
Output |
| Windows-style |
["C:", "path", "to", "file.txt"] |
C:\path\to\file.txt |
| Windows-style |
["path", "to", "file.txt"] |
path\to\file.txt |
| POSIX-style |
["/", "path", "to", "file.txt"] |
/path/to/file.txt |
| POSIX-style |
["path", "to", "file.txt"] |
path/to/file.txt |
| Port |
Description |
|
The segments of the path to join. |
Outputs
| Port |
Description |
|
The joined path. |
ID: core/filepath-join-array@v1