R/create_beastier_tempfolder.R

Defines functions create_beastier_tempfolder

Documented in create_beastier_tempfolder

#' Create the temporary folder as used by \link{beastier}
#' @return nothing
#' @examples
#' check_empty_beaustier_folders()
#'
#' create_beastier_tempfolder()
#'
#' remove_beaustier_folders()
#' check_empty_beaustier_folders()
#' @author Richèl J.C. Bilderbeek
#' @export
create_beastier_tempfolder <- function() {
  dir.create(
    dirname(get_beastier_tempfilename()),
    showWarnings = FALSE,
    recursive = TRUE
  )
}

Try the beastier package in your browser

Any scripts or data that you put into this service are public.

beastier documentation built on Nov. 7, 2023, 5:08 p.m.