.BG
.FN unlink
.TL
Remove a File
.CS
unlink(x)
.AG x
character string giving the name of a file.
.SE
The named file is removed.
.EX
# set up temp file and remove on exit
foo <- function() {
	file <- tempfile("junk")
	on.exit(unlink(file))
	...
}
.KW programming
.KW file
.WR
