To meet your needs, we constantly work to improve Querix products.
This means that Lycia documentation is developing as well.
In case you have found a certain dissonance between the provided information and the actual behavior of Lycia 3 and/or your applications, please, let us know about this via documentation@querix.com so that we can introduce the necessary changes to our documentation.
Thank you for your attention and cooperation.
The os.Path.join method is used to join two segments of the path adding the platform-dependent separator to the returning path. The syntax of the function is as follows:
CALL os.Path.join(begin, end) RETURNING newpath
where:
· begin = a string containing the first path segment,
· end = a string containing the last path segment,
· newpath = a string containing the whole path joined.
Usage
Typically this function is called for when there is a need to construct a path with no system-specific code using the correct path separator:
CALL os.Path.join(os.Path.homedir(),file_ name) RETURNING newpath