Returns the size of an HDF5 file
Procedure:
H5F_GET_FILESIZE(file_id, size)
Signature:
herr_t H5Fget_filesize( hid_t file_id, hsize_t *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
Parameters:
hid_t file_id | IN: Identifier of a currently-open HDF5 file |
hsize_t *size | OUT: Size of the file, in bytes |
Description:
H5F_GET_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.
Returns:
Returns a non-negative value if successful; otherwise returns a negative value.
Example:
Include Bitbucket Server for Confluence: An error occured
Connection to Bitbucket Server could not be established. Verify that you have properly configured the Bitbucket Server application link for your Confluence space and that your Bitbucket Server instance is up and running. Error details: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
Include Bitbucket Server for Confluence: An error occured
Connection to Bitbucket Server could not be established. Verify that you have properly configured the Bitbucket Server application link for your Confluence space and that your Bitbucket Server instance is up and running. Error details: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
History:
Release | Change |
---|
1.6.3 | Function introduced in this release. Fortran subroutine introduced in this release. |
--- Last Modified: December 20, 2018 | 01:48 PM