os.Path.join
Joins two path segments adding the platform-dependent separator.
Syntax
os.Path.join(
begin STRING,
end STRING )
RETURNS STRING
- begin is the beginning path segment.
- end is the ending path segment.
Usage
Use this method to construct a path with no system-specific code to use the
correct path separator:
LET path = os.Path.join(os.Path.homedir(), name)
This method returns the ending path segment if it is an absolute path.
If one of the arguments is NULL
, the function returns
NULL
.