tw_check_cache_folder | R Documentation |
Checks if cache folder exists, if not returns an informative message
tw_check_cache_folder()
If the cache folder exists, returns TRUE. Otherwise throws an error.
# If cache folder does not exist, it throws an error
tryCatch(tw_check_cache_folder(),
error = function(e) {
return(e)
}
)
# Create cache folder
tw_set_cache_folder(path = fs::path(
tempdir(),
"tw_cache_folder"
))
tw_create_cache_folder(ask = FALSE)
tw_check_cache_folder()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.