H5Fget_filesize
(
hid_t file_id
,
hsize_t *size
)
H5Fget_filesize
returns the size
of the HDF5 file specified by file_id
.
The returned size is that of the entire file,
as opposed to only the HDF5 portion of the file.
I.e., size
includes the user block, if any,
the HDF5 portion of the file, and
any data that may have been appended
beyond the data written through the HDF5 Library.
file_id
size
SUBROUTINE h5fget_filesize_f(file_id, size, hdferr) IMPLICIT NONE INTEGER(HID_T), INTENT(IN) :: file_id ! file identifier INTEGER(HSIZE_T), INTENT(OUT) :: size ! Size of the file INTEGER, INTENT(OUT) :: hdferr ! Error code: 0 on success, ! -1 if fail END SUBROUTINE h5fget_filesize_f
Release | C |
1.6.3 |
Function introduced in this release. Fortran subroutine introduced in this release. |