获取Filenet中路径为[Document Moving]的FileStorageArea



我是一名学生,是Filenet的新手。我正在尝试对文件移动进行测试代码。

Document doc = Factory.Document.getInstance(os, ClassNames.DOCUMENT, new Id("{33074B6E-FD19-4C0D-96FC-D809633D35BF}") );
FileStorageArea newDocClassFSA = Factory.FileStorageArea.fetchInstance(os, new Id("{3C6CEE68-D8CC-44A5-AEE7-CADE9752AA77}"), null );
doc.moveContent(dsa);
doc.save(RefreshMode.REFRESH);

问题是,我可以通过这样的路径获取文档,

doc = Factory.Document.fetchInstance(os, "/DEMO/MASTERFILE/ZONE-X/Org.No-XXXXX/XXXX-X-XXXX-X.TIF",null);

但我无法通过路径获取StorageArea,它只需要ID。有比这更容易移动文件的方法吗?如何在不使用查询的情况下获得带有路径的ID?

除了发出查询并通过RootDirectoryPath属性进行筛选外,没有其他方法可以通过其路径获取FileStorageArea

您可以使用以下路径访问文档的ID:

        //Get ID of the Document 
        StringBuffer propertyNames = new StringBuffer();
        propertyNames.append(PropertyNames.ID);
        propertyNames.append(" ");
        propertyNames.append(PropertyNames.PATH_NAME);
        PropertyFilter pf=new  PropertyFilter();
        FilterElement felement= new FilterElement(Integer.valueOf(0),Long.valueOf(0),Boolean.TRUE,propertyNames.toString(),Integer.valueOf(0));
        pf.addIncludeProperty(felement);
        Document document = Factory.Document.fetchInstance(os, ruta, pf );
        idDocument = document.get_Id().toString();

在idDocument字符串中有它。希望它能有所帮助。

相关内容

  • 没有找到相关文章

最新更新