Inspect the local aemo cache
See also
Other configuration:
aemo_clear_cache(),
aemo_throttle()
Examples
# \donttest{
op <- options(aemo.cache_dir = tempdir())
aemo_cache_info()
#> $dir
#> [1] "/tmp/Rtmpxs99ZC"
#>
#> $n_files
#> [1] 2
#>
#> $size_bytes
#> [1] 8192
#>
#> $size_human
#> [1] "8.0 KB"
#>
#> $files
#> name size_bytes modified
#> 1 bslib-71d7f13118c36706c39339f77436fb7b 4096 2026-05-31 19:34:00
#> 2 downlit 4096 2026-05-31 19:34:02
#>
options(op)
# }