| 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: 2025.2.0.0 (10.18.0.0)
Syntaxpublic 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