Open an HDF5 file
H5File.open(name, mode = c("a", "r", "r+", "w", "w-", "x"),
file_create_pl = h5const$H5P_DEFAULT,
file_access_pl = h5const$H5P_DEFAULT)
The name of the file to open
The mode how to open the file
File creation property list
File access property list
The file id (64bit-integer)
Open an HDF5 file. a
creates a new file or opens an existing one for read/write. r
opens an
existing file for reading, r+
opens an existing file for read/write. w
creates a file, truncating any
existing ones and w-
/x
are synonyms, creating a file and failing if it already exists.