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/Rtmp5DJNWv"
#>
#> $n_files
#> [1] 4
#>
#> $size_bytes
#> [1] 8936
#>
#> $size_human
#> [1] "8.7 KB"
#>
#> $files
#> name size_bytes modified
#> 1 bslib-e9b2b13fa612f50d23e4850d93d60d01 4096 2026-09-08 07:13:03
#> 2 downlit 4096 2026-09-08 07:13:06
#> 3 file19f06521d25d 434 2026-09-08 07:13:06
#> 4 file19f064efb52a 310 2026-09-08 07:13:05
#>
options(op)
# }