GetFullPathFromSchemedPath Method
Splits the scheme from the rest of the path using the Scheme Separator and returns just the Full Path.
Syntax
'Declaration Public Shared Function GetFullPathFromSchemedPath( _ ByVal schemedPath As String _ ) As String
'Usage Dim schemedPath As String Dim value As String value = PathUtil.GetFullPathFromSchemedPath(schemedPath)
public static string GetFullPathFromSchemedPath( string schemedPath )
public: static String^ GetFullPathFromSchemedPath( String^ schemedPath )
Parameters
- schemedPath
- string
Return Value
Item full path without scheme
Exceptions
Exception | Description |
---|---|
System.ArgumentNullException | schemedPath |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also