Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.
file
The file
namespace contains functions related to files.
file.path_join
The file.path_join
function joins any number of path elements into a single path, separating them with an OS-specific separator.
Examples
> file.path_join()
""
> file.path_join("this/is", "a/path")
"this/is/a/path"