SplitFileNameToParts


Splits the filename to base and extension, the extension is considered

Syntax

C++
Python
 
def SplitFileNameToParts(
	inPath: str,
	/
)
-> (
	outNameBase: str,
	outExtension: str
)

Parameters

Name Type Default Description
Input value inPath str Input path
Output value outNameBase str
Output value outExtension str