rb_check_cache_folder: Checks if cache folder exists, if not returns an informative...

View source: R/rb_caching.R

rb_check_cache_folderR Documentation

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

Description

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

Usage

rb_check_cache_folder()

Value

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

Examples


# If cache folder does not exist, it throws an error
tryCatch(rb_check_cache_folder(),
  error = function(e) {
    return(e)
  }
)

# Create cache folder
rb_set_cache_folder(path = fs::path(
  tempdir(),
  "rb_cache_folder"
))
rb_create_cache_folder(ask = FALSE)

rb_check_cache_folder()

giocomai/rbackupr documentation built on Oct. 18, 2023, 9:36 p.m.