Path joiner
Last updated
Last updated
[io/file/Path joiner]
Joins the specified relative path to a base path in an operating system-specific manner. Example:
"/home/user1/" received on base
"dir1/foo.txt" received on relative
"/home/user1/dir1/foo.txt" sent on joined
base: string
Receives the base path to concatenate onto. Example: "/home/user1/" (To keep the application portable use "/" as path separator.)
relative: string
Receives the path relative to base
.
Example:
"dir1/foo.txt"
(To keep the application portable use "/" as path separator.)
joined: string
Sends the resulting path. Example: "/home/user1/dir1/foo.txt"