append-path ( path1 path2 -- path )
Factor handbook » Input and output » Pathnames

Prev:prepend-path ( path1 path2 -- path )
Next:normalize-path ( path -- path' )


Vocabulary
io.pathnames

Inputs
path1a pathname string
path2a pathname string


Outputs
patha pathname string


Word description
Appends path1 and path2 to form a pathname.

Examples
USING: io.pathnames prettyprint ; "first" "second.txt" append-path .
"first/second.txt"


See also
prepend-path

Definition