Name
FullPath -- combine directory and file into a path (V2.0)
Synopsis
path$ = FullPath(dir$, file$[, ...])
Function
This function combines 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.

Inputs
dir$
source directory
file$
source file
...
optional: additional items to be appended to the path (V9.0)
Results
path$
path specification
Example
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().

Show TOC