filesstrings (version 2.0.0)

remove_dir: Remove directories

Description

Delete directories and all of their contents.

Usage

remove_dir(...)

dir.remove(...)

Arguments

...

The names of the directories, specified via relative or absolute paths.

Value

Invisibly, a logical vector with TRUE for each success and FALSE for failures.

Examples

Run this code
# NOT RUN {
setwd(tempdir())
sapply(c("mydir1", "mydir2"), dir.create)
remove_dir(c("mydir1", "mydir2"))
# }

Run the code above in your browser using DataCamp Workspace