Lists the immediate contents under a prefix in an S3 bucket, without
requiring a valid Zarr store to be present at that prefix. Useful for
discovering the actual store path(s) within a bucket that hosts multiple
datasets, before calling open_zarr() or zarr_s3store$new().
Usage
s3_list_dir(
bucket,
prefix = "",
region = NULL,
profile = NULL,
access_key = NULL,
secret_key = NULL,
session_token = NULL,
endpoint = NULL,
path_style = NULL,
anonymous = NULL
)Arguments
- bucket
Character string. The S3 bucket name.
- prefix
Character string. The prefix to list under. Default
"".- region, profile, access_key, secret_key, session_token, endpoint, anonymous, path_style
As in zarr_s3store; same credential resolution and anonymous default.