check existence and create folder if non-existent
Value
the same returned values for dir.create()
Examples
# \donttest{
run_example <- function(){
xx <- tempdir()
check_dir_create(xx)
# on.exit(unlink(xx, recursive = TRUE), add = TRUE)
}
run_example()
#> NULL
# }