R/utils_files.R

Defines functions dir_create

dir_create <- function(path) {
  if (!file.exists(path)) {
    dir.create(path = path, recursive = TRUE)
  }
  invisible()
}

Try the crew package in your browser

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

crew documentation built on April 11, 2025, 6:17 p.m.