Re: [R] copyING directories and files

2009-12-11 Thread Henrik Bengtsson
copyDirectory() in the R.utils package. /Henrik On Fri, Dec 11, 2009 at 1:01 AM, Paul Evans wrote: > Hi, > > I am using the windows version of R. I wanted to copy a directory (containing > several files) to another directory. Is there any command in R that will let > me do this (something like

Re: [R] copyING directories and files

2009-12-11 Thread Paul Evans
Thanks Romain, Uwe! From: Romain Francois To: Uwe Ligges Sent: Fri, December 11, 2009 5:35:57 AM Subject: Re: [R] copyING directories and files What about this as a start : dir.copy <- function( source = getwd(), target ){ files <- list

Re: [R] copyING directories and files

2009-12-11 Thread Romain Francois
What about this as a start : dir.copy <- function( source = getwd(), target ){ files <- list.files( source, recursive = TRUE ) dirs <- unique( gsub( "/[^/]+$", "", files[grepl("/", files)] ) ) if( !file.exists( target ) ){ dir.create( tar

Re: [R] copyING directories and files

2009-12-11 Thread Uwe Ligges
I'd use a shell() command to call xcopy or robocopy, or cp given you have some unix tools installed. Uwe Ligges Paul Evans wrote: Hi, I am using the windows version of R. I wanted to copy a directory (containing several files) to another directory. Is there any command in R that will let m

[R] copyING directories and files

2009-12-11 Thread Paul Evans
Hi, I am using the windows version of R. I wanted to copy a directory (containing several files) to another directory. Is there any command in R that will let me do this (something like the 'cp' command in UNIX)? I have looked at 'file.copy', but as the name implies I think it only copies one f