R/utils_files.R

Defines functions dir_create

dir_create <- function(path) {
  if (!file.exists(path)) {
    dir.create(path = path, recursive = TRUE)
  }
  invisible()
}
wlandau/crew documentation built on Feb. 8, 2025, 10:12 a.m.