Learn R Programming

tidywikidatar (version 0.5.9)

tw_check_cache_folder: Checks if cache folder exists, if not returns an informative message

Description

Checks if cache folder exists, if not returns an informative message

Usage

tw_check_cache_folder()

Arguments

Value

If the cache folder exists, returns TRUE. Otherwise throws an error.

Examples

Run this code

# 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()

Run the code above in your browser using DataLab