Inspect the local ato cache
See also
Other configuration:
ato_clear_cache(),
ato_meta()
Examples
# \donttest{
op <- options(ato.cache_dir = tempdir())
ato_cache_info()
#> $dir
#> [1] "/tmp/Rtmp7jztdZ"
#>
#> $n_files
#> [1] 4
#>
#> $size_bytes
#> [1] 8937
#>
#> $size_human
#> [1] "8.7 KB"
#>
#> $files
#> name size_bytes modified
#> 1 bslib-8a92d22979ec96a3105b4f8cbcdeeec5 4096 2026-05-04 19:14:08
#> 2 downlit 4096 2026-05-04 19:14:11
#> 3 file1a241d56895c 435 2026-05-04 19:14:11
#> 4 file1a2422d286ae 310 2026-05-04 19:14:11
#>
options(op)
# }