Skip to contents

[Stable]

Copy zip files from a source destination to an origin destination where they do not yet exist. That is, it only updates the target folder from the source folder.

Usage

ccopy(from, to, recursive = TRUE)

Arguments

from

A path to copy files from.

to

A path to copy files to.

recursive

Should files from subdirectories be copied?

Value

A message indicating how many files were copied.

Examples

if (FALSE) { # \dontrun{
ccopy("K:/data/myproject/", "~/myproject")
} # }