1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/R6Classes_H5File.R
\name{H5File.open}
\alias{H5File.open}
\title{Open an HDF5 file}
\usage{
H5File.open(name, mode = c("a", "r", "r+", "w", "w-", "x"),
file_create_pl = h5const$H5P_DEFAULT,
file_access_pl = h5const$H5P_DEFAULT)
}
\arguments{
\item{name}{The name of the file to open}
\item{mode}{The mode how to open the file}
\item{file_create_pl}{File creation property list}
\item{file_access_pl}{File access property list}
}
\value{
The file id (64bit-integer)
}
\description{
Open an HDF5 file
}
\details{
Open an HDF5 file. \code{a} creates a new file or opens an existing one for read/write. \code{r} opens an
existing file for reading, \code{r+} opens an existing file for read/write. \code{w} creates a file, truncating any
existing ones and \code{w-}/\code{x} are synonyms, creating a file and failing if it already exists.
}
\author{
Holger Hoefling
}
\keyword{internal}
|