1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/file.R
\name{with_file}
\alias{with_file}
\alias{local_file}
\title{Files which delete themselves}
\usage{
with_file(file, code)
local_file(.file, ..., .local_envir = parent.frame())
}
\arguments{
\item{file, .file}{\verb{[named list]}\cr Files to create.}
\item{code}{\code{[any]}\cr Code to execute in the temporary environment}
\item{...}{Additional (possibly named) arguments of files to create.}
\item{.local_envir}{\verb{[environment]}\cr The environment to use for scoping.}
}
\value{
\code{[any]}\cr The results of the evaluation of the \code{code}
argument.
}
\description{
Create files, which are then automatically removed afterwards.
}
\examples{
with_file("file1", {
writeLines("foo", "file1")
readLines("file1")
})
with_file(list("file1" = writeLines("foo", "file1")), {
readLines("file1")
})
}
\seealso{
\code{\link{withr}} for examples
}
|