h5ls {HDF5Array} | R Documentation |
Like rhdf5::h5ls()
, but works on an
H5File object.
h5ls(file, recursive=TRUE, all=FALSE, datasetinfo=TRUE, index_type=h5default("H5_INDEX"), order=h5default("H5_ITER"), s3=FALSE, s3credentials=NULL, native=FALSE)
file, recursive, all, datasetinfo, index_type, order, s3, s3credentials, native |
See Note that the only difference with |
See ?rhdf5::h5ls
in the rhdf5 package.
toy_h5 <- system.file("extdata", "toy.h5", package="HDF5Array") h5ls(toy_h5) h5file <- H5File(toy_h5) h5ls(h5file) ## See '?H5File' for more examples.