h5CreateFile {hdf5r.Extra}R Documentation

Create a new HDF5 file

Description

A wrapper for H5File$new(). If file exists, will only raise a warning.

Usage

h5CreateFile(x, ...)

## S3 method for class 'character'
h5CreateFile(x, ...)

Arguments

x

Name of the new HDF5 file.

...

Arguments passed to H5File$new()

Value

This is an operation function and no return. Any failure should raise an error.

Examples

tmp.file <- tempfile(fileext = ".h5")
h5CreateFile(tmp.file)


[Package hdf5r.Extra version 0.0.6 Index]