SbFileHelperGetDirName Method |
Returns the directory path part of a full path string.
Namespace: OIV.Inventor.HelpersAssembly: OIV.Inventor.Base (in OIV.Inventor.Base.dll) Version: 2023.1.3.0 (2023.1.3)
Syntax public static string GetDirName(
string fullFilePath
)
Public Shared Function GetDirName (
fullFilePath As String
) As String
public:
static String^ GetDirName(
String^ fullFilePath
)
static member GetDirName :
fullFilePath : string -> string
Parameters
- fullFilePath
- Type: SystemString
The full path string
Return Value
Type:
StringThe directory path string
Remarks
E.g. If the full path is "/tmp/a.tmp", returns "/tmp/"
See Also