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);
    }
}

関連項目