GetIndexedDocumentItems
Index.GetIndexedDocumentItems method
지정된 문서의 중첩 항목 배열을 가져옵니다(ZIP, OST, PST와 같은 컨테이너 문서의 경우).
public DocumentInfo[] GetIndexedDocumentItems(DocumentInfo documentInfo)
모수 | 유형 | 설명 |
---|---|---|
documentInfo | DocumentInfo | 문서 정보입니다. |
반환 값
문서 항목의 배열입니다.
예
이 예제는 인덱스에서 인덱싱된 문서의 항목 목록을 가져오는 방법을 보여줍니다.
string indexFolder = @"c:\MyIndex\";
string documentsFolder = @"c:\MyDocuments\";
// 지정된 폴더에 인덱스 생성
Index index = new Index(indexFolder);
// 지정된 폴더에서 문서 인덱싱
index.Add(documentsFolder);
// 인덱싱된 문서 목록 가져오기
DocumentInfo[] documents = index.GetIndexedDocuments();
for (int i = 0; i < documents.Length; i++)
{
DocumentInfo document = documents[i];
Console.WriteLine(document.FilePath);
DocumentInfo[] items = index.GetIndexedDocumentItems(document); // 문서 항목 목록 가져오기
for (int j = 0; j < items.Length; j++)
{
DocumentInfo item = items[j];
Console.WriteLine("\t" + item.InnerPath);
}
}
또한보십시오
- class DocumentInfo
- class Index
- 네임스페이스 GroupDocs.Search
- 집회 GroupDocs.Search