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 | |
|---|---|---|---|---|
![]() |
inPath | str | relative path | |
![]() |
inStartPath | str | None | None | starting path, by default the path of the project or where the program was executed in case of AVL |
![]() |
outPath | str | the resulting absolute path |


