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
Input value inPath str input path
Output value outRoot str the parent path
Output value outName str name, directory or file