Information about link
linkStruct = H5L.get_info(location_id,link_name,lapl_id)
linkStruct = H5L.get_info(location_id,link_name,lapl_id)
returns
information about a link.
A file or group identifier, location_id
,
specifies the location of the link. link_name
,
interpreted relative to link_id
, specifies the
link being queried.
fid = H5F.open('example.h5'); info = H5L.get_info(fid,'g3','H5P_DEFAULT'); H5F.close(fid);