R/dir.use.R

Defines functions dir.use

dir.use <- function(path, recursive = FALSE, ...) {
     if(!dir.exists(path))
        dir.create(path, recursive = recursive, ...)
     path
}
John-R-Wallace/R-ToolBox documentation built on April 17, 2024, 1:37 p.m.