HDF-NI / hdf5.node

A node module for reading/writing the HDF5 file format.
MIT License
123 stars 40 forks source link

Discovering groups and datasets in existing HDF5 #35

Closed duckontheweb closed 7 years ago

duckontheweb commented 7 years ago

Is there a way to discover the group and dataset IDs within an existing file? I don't see anything in the documentation and inspecting an hdf5.File object doesn't show anything that might be useful in figuring out the id to be used in a call to file.openGroup().

zszszsz commented 7 years ago

file.getMemberNames() and group.getMemberNames()

rimmartin commented 7 years ago

That is right. I see I need to add it to the docs for file.