H5Pget_elink_acc_flags
(
hid_t lapl_id
,
unsigned *flags
)
H5Pget_elink_acc_flags
retrieves the file access flag used to open an external link target file
from the specified link access property list.
The value returned, if it is not H5F_ACC_DEFAULT
will
override the default access flag, which is the access flag used to open
the parent file.
hid_t lapl_id
| IN: Link access property list identifier | |||||||||||||
unsigned *flags
| OUT: File access flag for link traversal.
Valid values include:
|
lapl_id
into a local
variable:
unsigned acc_flags; status = H5Pget_elink_acc_flags(lapl_id, &acc_flags);
H5Pset_elink_acc_flags
Release | Change |
1.8.3 | C function introduced in this release. |