H5L.get_info

Information about link

Syntax

linkStruct = H5L.get_info(location_id,link_name,lapl_id)

Description

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.

Examples

fid = H5F.open('example.h5');
info = H5L.get_info(fid,'g3','H5P_DEFAULT');
H5F.close(fid);