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/RtmpiVpGVb"
#>
#> $n_files
#> [1] 4
#>
#> $size_bytes
#> [1] 8937
#>
#> $size_human
#> [1] "8.7 KB"
#>
#> $files
#> name size_bytes modified
#> 1 bslib-8a92d22979ec96a3105b4f8cbcdeeec5 4096 2026-04-28 19:13:24
#> 2 downlit 4096 2026-04-28 19:13:27
#> 3 file19ef5a3c74db 435 2026-04-28 19:13:27
#> 4 file19ef33ca0169 310 2026-04-28 19:13:27
#>
options(op)
# }