Apollo3zehn / PureHDF

A pure .NET library that makes reading and writing of HDF5 files (groups, datasets, attributes, ...) very easy.
MIT License
50 stars 18 forks source link

Does this library support query hdf5 file to get a tree view of the file? #16

Closed Fokatu closed 1 year ago

Fokatu commented 2 years ago

Does this library support query hdf5 file to get a tree view of the file? If so, how to do it? Thanks!

Apollo3zehn commented 2 years ago

Do you mean something like this? https://github.com/Apollo3zehn/HDF5.NET#iteration

With a recursive function you could walk the whole tree (every time you find a group, you would iterate its children).