SplitPathToNameParent
Splits a file path into a file name and a parent directory
Syntax
C++
Python
def SplitPathToNameParent( inPath: str, / ) -> ( outRoot: str, outName: str )
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPath | str | input path | |
![]() |
outRoot | str | the parent path | |
![]() |
outName | str | name, directory or file |


