R/files.R
remove_dir.Rd
Delete directories and all of their contents.
remove_dir(...) dir.remove(...)
The names of the directories, specified via relative or absolute paths.
Invisibly, a logical vector with TRUE for each success and FALSE for failures.
TRUE
FALSE
if (FALSE) { sapply(c("mydir1", "mydir2"), dir.create) remove_dir(c("mydir1", "mydir2")) }