Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5LT_FIND_DATASET

Determines whether a dataset exists

Procedure:

H5LT_FIND_DATASET (loc_id, dset_name)

Signature:

herr_t H5LTfind_dataset ( hid_t loc_id, const char *dset_name )

integer function h5ltfind_dataset_f(loc_id, dset_name)
  implicit none
  integer(HID_T), intent(IN) :: loc_id               ! group identifier 
  character(LEN=*), intent(IN) :: dset_name          ! name of the dataset 
end function h5ltfind_dataset_f

Parameters:
hid_t loc_idIN: Identifier of the group containing the dataset
const char *dset_name

IN: Dataset name

Description:

H5LT_FIND_DATASET determines whether a dataset named dset_name exists in the group specified by loc_id.

loc_id must be a group identifier and dset_name must specify a dataset that is a member of that group.

Returns:

Returns 1 if the dataset exists, returns 0 otherwise.

Example:

Coming Soon!

--- Last Modified: August 13, 2019 | 01:33 PM