Appends a list of files to a data set.
# S3 method for GenericDataFileSet
appendFiles(this, files, clone=TRUE, ..., .fileClass=getFileClass(this),
.assertSameClass=TRUE, verbose=FALSE)
Returns (invisible) the appended data set (itself).
A single GenericDataFile
or a list
of such to
be appended.
If TRUE
, each file is cloned before being appended.
Additional arguments passed to append
().
A character
string specifying the class that
all files must inherit from.
If NULL
, *getFileClass()
is used.
If TRUE
, the files to be appended must inherit
from the same class as the existing files (the first file).
...
Henrik Bengtsson
The files appended must inherit the same class as the first file of the data set, otherwise an exception is thrown.
To append a data set, see append
().
For more information see GenericDataFileSet
.