给定一个H5 :: Group,我如何在其hdf5文件中打印其完整路径?

时间:2018-09-25 14:57:49

标签: c++ hdf5

我有一些需要随机H5 :: Group的代码。我的理解是,从该对象中,我应该能够了解该文件位于哪个文件中以及该文件内的路径。

void PrintPathTo(const H5::Group& group){
std::stringstream path;
path << group.getFileName() << ":/" << group.getPath() // this doesn't work. Is there something like it?

std::cout << path.str() << std::endl; 


}

是否可以在不搜索整个文件的情况下进行操作?

0 个答案:

没有答案