Array of Strings to Path

Converts an array of strings into a relative or absolute path. If you have an empty string in the array, the directory location before the empty string is deleted in the path output. This behavior is similar to moving up a level in directory hierarchy.

relative indicates whether you want to create a relative path or an absolute path. If TRUE, it is a relative path. If FALSE (default), it is an absolute path. If FALSE and the path specified is not valid as an absolute path (for example, the path means go up a level), the function sets path to <Not A Path>.
array of strings contains the names of the components of the path you want to build. The first element is the highest level of the path hierarchy (the volume name, for file systems that support multiple volumes), and the last element is the last element of the hierarchy. An element that contains an empty string tells LabVIEW to go up a level in the hierarchy.
path is the resulting path.