디렉터리 개체 삭제
디렉터리 개체를 제거하기 위해 DirectoryEntries 클래스에서는 Remove 메서드를 제공합니다. 이 메서드는 현재 부모 DirectoryEntry 개체의 Children 컬렉션에서 자식 항목을 제거합니다. 이 메서드는 프린터 노드나 컴퓨터 노드와 같은 디렉터리 트리에 대한 컨테이너로 사용되지 않는 개체 또는 빈 컨테이너에서만 사용할 수 있습니다. 자식 개체가 있는 컨테이너를 삭제하는 방법은 개체 하위 트리 삭제를 참조하십시오.
다음 예제에서는 디렉터리에서 개체를 제거하는 방법을 보여 줍니다.
Dim entry As New DirectoryServices.DirectoryEntry("WinNT://DomainName")
Dim entryToRemove As DirectoryServices.DirectoryEntry
' Add code here to set entryToRemove to the entry you want to remove.
entry.Children.Remove(entryToRemove)
System.DirectoryServices.DirectoryEntry entry =
new System.DirectoryServices.DirectoryEntry("WinNT://DomainName");
System.DirectoryServices.DirectoryEntry entryToRemove = null;
// Add code here to set entryToRemove to the entry you want to remove.
entry.Children.Remove(entryToRemove);
참고 항목
참조
System.DirectoryServices
DirectoryEntry
DirectoryEntries
개념
개체 만들기, 삭제, 이름 바꾸기 및 이동
개체 하위 트리 삭제
Send comments about this topic to Microsoft.
Copyright © 2007 by Microsoft Corporation. All rights reserved.