Rev 11579 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{unlink}\title{Delete Files and Directories}\usage{unlink(x, recursive = FALSE)}\alias{unlink}\arguments{\item{x}{a character vector with the names of the file(s) ordirectories to be deleted.Wildcards (normally \file{*} and \file{?}) are allowed.}\item{recursive}{logical. Should directories be deletedrecusively?}}\description{\code{unlink} deletes the file(s) or directories specified by \code{x}.}\details{If \code{recusive = FALSE} directories are not deleted,not even empty ones.\code{\link{file.remove}} can only remove files, but gives moredetailed error information.}\value{#ifdef unixThe return value of the corresponding system command, \code{rm -f},normally \code{0} for success, \code{1} for failure.#endif#ifdef windows\code{0} for success, \code{1} for failure.#endifNot deleting a non-existent file is not a failure.}\note{Prior to \R version 1.2.0 the default on Unix was \code{recursive =TRUE}, and on Windows empty directories could be deleted.}\seealso{\code{\link{file.remove}}.}%Examples: tempfile has an 'unlink' example\keyword{file}