Clear the Climasus4r cache
Usage
clear_climasus_cache(
cache_dir = "~/.climasus4r_cache",
older_than_days = NULL,
verbose = TRUE
)
Arguments
- cache_dir
Character. Cache directory to clear. Default is "~/.climasus4r_cache".
- older_than_days
Numeric. Only clear files older than this many days. NULL clears all.
- verbose
Logical. If TRUE, prints information about what was cleared.
Examples
if (FALSE) { # \dontrun{
# Clear all cache
clear_climasus_cache()
# Clear only files older than 90 days
clear_climasus_cache(older_than_days = 90)
} # }