copyDirectory
From R.utils v1.19.3
by Henrik Bengtsson
Copies a directory
Copies a directory.
- Keywords
- file
Usage
## S3 method for class 'default':
copyDirectory(from, to=".", ..., private=TRUE, recursive=TRUE)
Arguments
- from
- The pathname of the source directory to be copied.
- to
- The pathname of the destination directory.
- ...
- Additional arguments passed to
file.copy
(), e.g.overwrite
. - private
- If
TRUE
, files (and directories) starting with a period is also copied, otherwise not. - recursive
- If
TRUE
, subdirectories are copied too, otherwise not.
Value
Community examples
Looks like there are no examples yet.