Skip to contents

Returns the cache directory, number of files, total size, and a per-file summary. Useful for deciding whether to call cer_clear_cache().

Usage

cer_cache_info()

Value

A list with elements dir, n_files, size_bytes, size_human, and files (a data frame with name, size_bytes, modified).

See also

Other configuration: cer_clear_cache()

Examples

# \donttest{
op <- options(cer.cache_dir = tempdir())
cer_cache_info()
options(op)
# }