Open an HDF5 file
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)
name |
The name of the file to open |
mode |
The mode how to open the file |
file_create_pl |
File creation property list |
file_access_pl |
File access property list |
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.
The file id (64bit-integer)
Holger Hoefling
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.