This function creates a temporary directory and sets it as R_USER_CACHE_DIR
before executing the provided code block. It is used for testing or running
code without affecting the user's default cache directory as required by CRAN for the examples .
This function is not designed to be used by package users. Shamelessly "inspired" by
some @luciorq code.
Usage
with_extr_sandbox(code, temp_dir = tempdir())
Examples
with_extr_sandbox(Sys.getenv("R_USER_CACHE_DIR"))
#> [1] "/var/folders/bp/fpwcfq1563l21rz5gdcsfcsw0000gn/T//RtmpBHtujD"
with_extr_sandbox(tools::R_user_dir("extractox", "cache"))
#> [1] "/var/folders/bp/fpwcfq1563l21rz5gdcsfcsw0000gn/T//RtmpBHtujD/R/extractox"