R provides two functions to remove files (and folder) from the file system:
unlinkfile.remove
It's not entirely obvious what the differences are, or indeed when to use which, other than that unlink takes some additional arguments.
Reading the source code for these functions doesn't help very much, since both simply calls a compiled C function.
What are the differences? When should you use unlink in preference to file.remove, or vice versa?
unlinkwill delete directories, butfile.removewill only delete empty ones, and not on Windows – James Mar 27 '12 at 12:19