Path To Array of Strings
- Updated2023-02-17
- 2 minute(s) read
Path To Array of Strings
Converts a path into an array of strings and indicates whether the path is relative.
Inputs/Outputs

path
Is the path you want to convert to an array of strings.
If path is
<Not A Path> or an empty path, the array of strings is an empty array and relative is False.

relative
Whether the path you converted is a relative path or an absolute path.
If True, it is a relative path. If False, it is an absolute path.

array of strings
The components of the path.
The first element is the first step of the path hierarchy. For file systems that support multiple volumes, the first element is the volume name. If path is a network path, the first element of array of strings includes the name of the server in addition to the first step of the path hierarchy. The last element of array of strings is the file or directory specified by the path.