Description Usage Arguments Details Examples
A configurable default location for persistent data storage
1 | content_dir(dir = Sys.getenv("CONTENTID_HOME", tools::R_user_dir("contentid")))
|
dir |
directory to be used as the home directory |
This function is intended to be called internally with no
arguments. It will use the directory set by the system environmental
variable CONTENTID_HOME, if set. Otherwise, it will use the default
location returned by tools::R_user_dir for the application,
contentid
. Unlike rappdirs function, this function will also
create the directory if it does not yet exist.
1 2 3 4 5 6 7 8 9 | ## example using temporary storage:
Sys.setenv(CONTENTID_HOME=tempdir())
content_dir()
## clean up
Sys.unsetenv("CONTENTID_HOME")
## Or explicitly with an argument:
content_dir(tempdir())
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.