Filepath Join From Array
Dieser Inhalt ist noch nicht in deiner Sprache verfügbar.
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 |
Inputs
Section titled “Inputs”| Port | Description |
|---|---|
| The segments of the path to join. |
Outputs
Section titled “Outputs”| Port | Description |
|---|---|
| The joined path. |
ID: core/filepath-join-array@v1