SbFileHelperGetBaseName Method |
Returns the filename part of a full path string.
Namespace: OIV.Inventor.HelpersAssembly: OIV.Inventor.Base (in OIV.Inventor.Base.dll) Version: 10.12.3.0 (10.12.3.0)
Syntax public static string GetBaseName(
string fullFilePath
)
Public Shared Function GetBaseName (
fullFilePath As String
) As String
public:
static String^ GetBaseName(
String^ fullFilePath
)
static member GetBaseName :
fullFilePath : string -> string
Parameters
- fullFilePath
- Type: SystemString
The full path string
Return Value
Type:
StringThe extracted filename
Remarks
E.g If the full path is "/tmp/a.tmp", the function will return "a.tmp"
See Also