Description Details Useful user functions Author(s) Examples
Manage cached getCRUCLdata files with hoardr
The default cache directory is
file.path(rappdirs::user_cache_dir(), "R/getCRUCLdata"), but you can
set your own path using manage_cache$cache_path_set()
manage_cache$cache_delete only accepts one file name, while
manage_cache$cache_delete_all
does not accept any names, but deletes all files. For deleting many specific
files, use manage_cache$cache_delete in an
lapply() type call.
manage_cache$cache_path_get() - get cache path
manage_cache$cache_path_set() - set cache path
manage_cache$list() - returns a character vector of full
path file names
manage_cache$files() - returns file objects with metadata
manage_cache$details() - returns files with details
manage_cache$delete() - delete specific files
manage_cache$delete_all() - delete all files, returns
nothing
Adam H. Sparks, adamhsparks@gmail.com
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ## Not run:
# list files in cache
manage_cache$list()
# delete certain database files
manage_cache$delete("file path")
manage_cache$list()
# delete all files in cache
manage_cache$delete_all()
manage_cache$list()
# set a different cache path from the default
manage_cache$cache_path_set("~/tmp")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.