delete {qdap} | R Documentation |
Easy File Handling
Description
delete
- Deletes files and directories.
folder
- Create a folder/directory.
Usage
delete(file = NULL)
folder(..., folder.name = NULL)
Arguments
file |
The name of the file in the working directory or the path to the
file to be deleted. If |
folder.name |
A character vector of the name(s) of the folder to be
created. Default |
... |
The name(s) of the folder to be created. If both ... and
|
Value
delete
permanently removes a file/directory.
folder
creates a folder/directory.
See Also
unlink
,
file.remove
,
dir.create
Examples
## Not run:
(x <- folder("DELETE.ME"))
which(dir() == "DELETE.ME")
delete("DELETE.ME")
which(dir() == "DELETE.ME")
folder("the/next/big/thing", "hello world", "now/is/the/time")
folder(cat, dog)
lapply(c("cat", "dog"), delete)
## End(Not run)
[Package qdap version 2.4.6 Index]