path$ = FullPath(dir$, file$[, ...])
dir$ and file$ into a path specification.
Starting with Hollywood 9.0, this function accepts an unlimited number of arguments, allowing you to combine an unlimited number of path constituents into a single path.
path$ = FullPath("/home/andreas", "image.jpg")
path$ receives the string "/home/andreas/image.jpg".
path$ = FullPath("/home", "andreas", "image.jpg")
This does the same as the first example but passes three instead of two
arguments to FullPath().