Skip to contents

Returns path to projr profile-specific directory. Differs from projr_dir_get in that it does not assume that the path is to a directory.

Will create the parent directory of the specified path if it does not exist, and ignore it if requested by _projr.yml.

Usage

projr_path_get(
  label,
  ...,
  create = TRUE,
  path_relative_force = FALSE,
  output_safe = TRUE
)

Arguments

label

character. One of "data_raw", "cache","output", "archive" and "docs". Class of directory to return. The "docs" option returns the path to the output directory from bookdown::render_book (as specified in "_bookdown.yml"), whereas the others returns paths as specified in "_projr.yml".

...

Specifies sub-path of directory returned.

create

logical. If TRUE, then the parent directory is created if it does not exist and it is ignored (or not) from .gitignore and .Rbuildignore as specified in _projr.yml. Default is TRUE.

path_relative_force

logical. If TRUE, then forces that the returned path is relative to the project root. Default is FALSE.

output_safe

logical. If TRUE, then the output directory is set to be "<path_to_cache>/projr_output" instead of <path_to_output> (as specified in _projr.yml). The only time that this should be set to TRUE should be when projr_build_output is being run, as otherwise "development" or test runs will add to, delete or overwrite files from the previous run of projr_build_output. Default is TRUE.

Value

Character. Path to directory requested.

Details

DETAILS

Examples

if (FALSE) {
if (interactive()) {
  # EXAMPLE1
}
}