Description Usage Arguments Value See Also Examples
delete - Deletes files and directories.
folder - Create a folder/directory.
| 1 2 3 | 
| file | The name of the file in the working directory or the path to the file to be deleted. If NULL provides a menu of files from the working directory. | 
| ... | The name(s) of the folder to be created.
If both ... and  | 
| folder.name | A character vector of the name(s) of the folder to be created. Default NULL (if the ... is NULL too) creates a file in the working directory with the creation date and time stamp. Use this argument only if the directory names contain spaces. | 
delete permanently removes a file/directory.
folder creates a folder/directory.
unlink,
file.remove,
dir.create
| 1 2 3 4 5 6 7 | ##  (x <- folder("DELETE.ME"))
##  which(dir() == "DELETE.ME")
##  delete("DELETE.ME")
##  which(dir() == "DELETE.ME")
##
##  folder(cat, dog)
##  lapply(c("cat", "dog"), delete)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.