Rev 6179 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{tempfile}\title{Create Unique Names for (Temporary) Files}\usage{tempfile(pattern = "file")}\alias{tempfile}\arguments{\item{pattern}{a character vector giving the initial part of the name.}}\value{A character vector giving the names of possible (temporary) files. Thenames are guaranteed to be unique among calls to \code{tempfile} in an \Rsession, and to not exist as files. Note that no files are generatedby \code{tempfile}.}\details{The filenames will be in the directory given by the first found ofthe environment variables \code{TMP}, \code{TEMP} and \code{R\_USER}(see \code{\link{Rconsole}}). If the path to the directory containsa space in any of the components, the path returned will use theshortnames version of the path.}\seealso{\code{\link{unlink}} for deleting files.}\keyword{file}