Explicitly creates a new group (or nested groups) in an HDF5 file. This is useful for creating an empty group structure.
Examples
file <- tempfile(fileext = ".h5")
h5_create_file(file)
# Create a nested group structure
h5_create_group(file, "/data/experiment/run1")
h5_ls(file)
#> [1] "data" "data/experiment" "data/experiment/run1"
unlink(file)
