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
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
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
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
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
5 matches
Mail list logo