After a session I would like to clean up my temporary folders, like for instance

d <- tempfile()
dir.create(d)
setwd(d)
# now work and sweave and latex etc

How can I remove d and its elements? file.remove fails.

Kind regards, Karsten

link|improve this question

It is not necessary. R itself will delete everything in temporary directory. – Marek Jun 6 '11 at 9:54
feedback

2 Answers

up vote 3 down vote accepted

Try unlink("d", recursive=TRUE). That should delete the folder and its contents.

link|improve this answer
works great, thank you! – Karsten W. Jun 4 '11 at 4:36
feedback

Try ?unlink. Depends on what os you are using but this:

unlink(d, recursive=TRUE)

Should work. If you want to delete the contents and reuse the folder you could try this:

file.remove(dir(d, full.names=TRUE))
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.