如何在Filenet 5.2中检索整个文件夹内容?

时间:2017-08-25 17:26:36

标签: java filenet filenet-content-engine

有类似的方法 通过get_Subfolders()的{​​{1}} get_ContainedDocuments()中的Folder界面提供FilenetJava API

我已经尝试过使用get_Containees(),但它返回一个空列表(迭代器没有下一个条目)。

有没有办法在不进行两次网络通话的情况下检索文件夹和文件?有没有什么技巧可以做到?

1 个答案:

答案 0 :(得分:0)

Folder.get_Containees检索文件夹中的引用包含的对象(文件夹,文档,自定义对象)。

Folder.get_ContainedDocuments method to retrieve all documents contained in the folder. 

例如:

String folderPath = "/DocFolder/MyDocs";
Folder myFolder = Factory.Folder.fetchInstance(os, folderPath, null);
DocumentSet myLoanDocs = myFolder.get_ContainedDocuments();