# List tables in a DBI database
cnt <- connector_dbi(RSQLite::SQLite())
cnt |>
list_content_cnt()
# List content in a file storage
cnt <- connector_fs(tempdir())
cnt |>
list_content_cnt()
# Only list CSV files using the pattern argument of list.files
cnt |>
list_content_cnt(pattern = "\\.csv$")
Run the code above in your browser using DataLab