Path builder
[io/file/Path builder]
Constructs an operating system specific path of the specified segments. Example:
{ "directory": "/home/user1/dir1", "basename": "foo", "extension": ".txt" }@0 received on
components
"/home/user1/dir1/foo.txt"@0 sent on
path
Input ports
components:
Receives the components to build the path from. Example (Windows): { "directory": "C:/Users/User1/dir1", "basename": "foo", "extension": ".txt" } Example (OSX & *nix): { "directory": "/home/user1/dir1", "basename": "foo", "extension": ".txt" } (To keep the application portable use "/" as path separator.)
Output ports
path:
string
Sends the resulting path. Example (Windows): "C:/Users/User1/dir1/foo.txt" Example (OSX & *nix): "/home/user1/dir1/foo.txt"
Last updated