DirectoryEntry::Exists Method (String^)
.NET Framework (current version)
Determines if the specified path represents an actual entry in the directory service.
Assembly: System.DirectoryServices (in System.DirectoryServices.dll)
Parameters
- path
-
Type:
System::String^
The path of the entry to verify.
Return Value
Type: System::Booleantrue if the specified path represents a valid entry in the directory service; otherwise, false.
The following example takes one argument and determines whether the path corresponds to a valid DirectoryEntry.
String^ myADSPath = "LDAP://onecity/CN=Users,DC=onecity,DC=corp,DC=fabrikam,DC=com"; // Determine whether the given path is correct for the DirectoryEntry. if (DirectoryEntry::Exists(myADSPath)) { Console::WriteLine("The path {0} is valid", myADSPath); } else { Console::WriteLine("The path {0} is invalid", myADSPath); }
.NET Framework
Available since 1.1
Available since 1.1
Show: