ConvertPathToAbsolute


Makes the path absolute, inStartPath + inPath

Syntax

C++
Python
 
def ConvertPathToAbsolute(
	inPath: str,
	/,
	*,
	inStartPath: str | None = None
)
-> outPath: str

Parameters

Name Type Default Description
Input value inPath str relative path
Input value inStartPath str | None None starting path, by default the path of the project or where the program was executed in case of AVL
Output value outPath str the resulting absolute path