Path joiner

[io/file/Path joiner]


Joins the specified relative path to a base path in an operating system-specific manner. Example:

  1. "/home/user1/" received on base

  2. "dir1/foo.txt" received on relative

  3. "/home/user1/dir1/foo.txt" sent on joined


Input ports

  • 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.)

Output ports

  • joined: string

    Sends the resulting path. Example: "/home/user1/dir1/foo.txt"

Last updated