H5Dget_storage_size(hid_t dataset_id
)
H5Dget_storage_size returns the amount of storage
that is required for the specified dataset, dataset_id.
For chunked datasets, this is the number of allocated chunks times
the chunk size.
The return value may be zero if no data has been stored.
hid_t dataset_id |
IN: Identifier of the dataset to query. |
SUBROUTINE h5dget_storage_size_f(dset_id, size, hdferr)
IMPLICIT NONE
INTEGER(HID_T), INTENT(IN) :: dset_id ! Dataset identifier
INTEGER(HSIZE_T), INTENT(OUT) :: size ! Amount of storage required
! for dataset
INTEGER, INTENT(OUT) :: hdferr ! Error code
! 0 on success and -1 on failure
END SUBROUTINE h5dget_storage_size_f
| Release | Fortran90 |
| 1.4.5 | Function introduced in this release. |