PathCollectionIsUNCPath Method |
Checks if the given path is a UNC path like \\Server\share. It does not check if the path really exists.
see also http://msdn2.microsoft.com/en-us/library/aa365247.aspx#maximum_path_length
Namespace:
Jam.Shell
Assembly:
ShellBrowser.Core (in ShellBrowser.Core.dll) Version: 7.1
Syntax public static bool IsUNCPath(
string aPath
)
Public Shared Function IsUNCPath (
aPath As String
) As Boolean
public:
static bool IsUNCPath(
String^ aPath
)
static member IsUNCPath :
aPath : string -> bool
Parameters
- aPath
- Type: SystemString
A path that should be checked
Return Value
Type:
Booleanture, if the given path is a UNC path, false otherwise
See Also