MakePathΒΆ

MakePath creates a full path name composed of a drive letter, directory path, file name and extension.

ssFileName = MakePath(svSplitPath)

Return Value

ssFileName is the full path name.

Parameters

svSplitPath

svSplitPath is a string vector with four elements:

Value Meaning
svSplitPath[1] is the drive letter followed by a colon.
svSplitPath[2] is the path of subdirectories including the trailing slash.
svSplitPath[3] is the file name.
svSplitPath[4] is the extension including the leading period (.).

Example

* MakePath(["d", "\test", "test", "xls"])
d:\test\test.xls

id-139333