PathCollectionIsLocalPath Method |
Checks if the given path is an absolute local path (including mapped network drives), i.e. if it starts with a drive letter and is followed by a colon and a backslash ("c:\")
Namespace:
Jam.Shell
Assembly:
ShellBrowser.Core (in ShellBrowser.Core.dll) Version: 7.1
Syntax public static bool IsLocalPath(
string pPath
)
Public Shared Function IsLocalPath (
pPath As String
) As Boolean
public:
static bool IsLocalPath(
String^ pPath
)
static member IsLocalPath :
pPath : string -> bool
Parameters
- pPath
- Type: SystemString
The path to check.
Return Value
Type:
Booleantrue if the given path is an absolute local path or mapped network drive, false otherwise
See Also