Fortran interface of H5Gget_objname_by_idx() C function.

Dear all,

I am trying to obtain a list of group names within a parent group (in fortran). As I figured out, this is possible only by using the C function H5Gget_objname_by_idx(). However I did not find its Fortran Interface while searching the source code. Should I try to implement it by myself, or is there a quicker way?

Thanks.
Spyros

You should use H5Lget_name_by_idx_f instead.

1 Like

Noted, thank you for the prompt response!