Filepath Join
Ce contenu n’est pas encore disponible dans votre langue.
Perform a join operation on a file path
| 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@v1