Lists all files in the bucket or files matching a certain pattern.
Usage
aou_ls_bucket(
pattern = "",
silent = FALSE,
recursive = TRUE,
bucket = getOption("aou.default.bucket"),
gsutil_args = ""
)
Arguments
- pattern
Regular expression, such as "*.csv" or a single file name e.g., "mydata.csv". Default will find all files apart from notebooks (.ipynb files).
- silent
Whether to omit the names of files found. Defaults to
FALSE
.- recursive
Whether to search subdirectories. Defaults to
TRUE
.- bucket
Bucket to retrieve file from. Defaults to
getOption("aou.default.bucket")
, which isSys.getenv('WORKSPACE_BUCKET')
unless specified otherwise.- gsutil_args
A string containing other arguments passed to
gsutil ls
. See https://cloud.google.com/storage/docs/gsutil/commands/ls for details.