Description Usage Arguments Details Value
View source: R/b2_list_file_names.R
List of files in a B2 bucket, starting at a given file name
1 2 3 | b2_list_file_names(bucket_id, ...)
b2_list_file_names_df(bucket_id, ...)
|
bucket_id |
Id of the bucket to get list of files. Note that this is not the name of the bucket. |
... |
Optional parameters (see details) |
See https://www.backblaze.com/b2/docs/b2_list_file_names.html
Note that you provide the id of the bucket to this function, not the name
of the bucket. The id of the bucket is obtained from a call to
b2_list_buckets
.
To get the a list of files by bucket name, call b2_files_by_bucket_name
Optional arguments to the API call can be passed as named arguments
startFileName
- The first file name to return
maxFileCount
- Maximum number of files to return (defaults to 100, maximum 10000)
prefix
- Return files starting with prefix
delimiter
- Used to limit return to top folder or single subfolder
b2_list_file_names
returns a list of the JSON response.
b2_list_file_names_df
returns a tibble of the file information.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.