Skip to contents

Inspect the local aemo cache

Usage

aemo_cache_info()

Value

A list with dir, n_files, size_bytes, size_human, files.

See also

Other configuration: aemo_clear_cache(), aemo_throttle()

Examples

# \donttest{
op <- options(aemo.cache_dir = tempdir())
aemo_cache_info()
#> $dir
#> [1] "/tmp/Rtmpprf0te"
#> 
#> $n_files
#> [1] 2
#> 
#> $size_bytes
#> [1] 8192
#> 
#> $size_human
#> [1] "8.0 KB"
#> 
#> $files
#>                                     name size_bytes            modified
#> 1 bslib-8a92d22979ec96a3105b4f8cbcdeeec5       4096 2026-04-28 19:13:09
#> 2                                downlit       4096 2026-04-28 19:13:12
#> 
options(op)
# }