| SbFileHelperToUnixPath Method  | 
Converts a Microsoft Windows path (with '\') to a Unix path (with '/'). 
 
Namespace: OIV.Inventor.HelpersAssembly: OIV.Inventor.Base (in OIV.Inventor.Base.dll) Version: 2025.2.0.0 (10.18.0.0)
Syntaxpublic static string ToUnixPath(
	string path
)
Public Shared Function ToUnixPath ( 
	path As String
) As String
public:
static String^ ToUnixPath(
	String^ path
)
static member ToUnixPath : 
        path : string -> string 
Parameters
- path
 - Type: SystemString
The path to convert. 
 
Return Value
Type: 
StringThe converted path 
Remarks
A leading "\\" (used for network paths) is not converted.
See Also