'Declaration
Public Overloads Shared Function ConvertToUnix( _
ByVal As String, _
ByVal As String, _
ByVal As String _
) As String
'Usage
Dim windowsPath As String
Dim windowsRoot As String
Dim unixRoot As String
Dim value As String
value = UnixPath.ConvertToUnix(windowsPath, windowsRoot, unixRoot)
public static string ConvertToUnix(
string ,
string ,
string
)
public: static string* ConvertToUnix(
string* ,
string* ,
string*
)
public:
static String^ ConvertToUnix(
String^ ,
String^ ,
String^
)
Parameters
- windowsPath
- A relative or absolute Windows path.
- windowsRoot
- The root to remove from the beginning of windowsPath.
- unixRoot
- The root to prepend to the Unix path.
Return Value
A sanitized Unix path equivalent to windowsPath under unixRoot.