Merges RIF or CIF files.
mergeXIF(
fileName,
write_to,
extract_features = FALSE,
endianness = .Platform$endian,
verbose = FALSE,
verbosity = 1,
overwrite = FALSE,
display_progress = TRUE,
add_tracking = TRUE,
...
)
It invisibly returns full path of exported file.
paths of files to merge. All files have to be either '.rif' or '.cif' files. All files should have same channels.
pattern used to export file.
Placeholders, like "%d/%s_fromR.%e", will be substituted:
-%d: with full path directory of first element of 'fileName'
-%p: with first parent directory of first element of 'fileName'
-%e: with extension of 'fileName' (without leading .)
-%s: with shortname from of first element of 'fileName' (i.e. basename without extension).
Exported file extension will be deduced from this pattern. It has to be the same as 'fileName', i.e. .cif or .rif.
whether to try to extract features. Default is FALSE. Not yet implemented.
the endian-ness ("big" or "little") of the target system for the file. Default is .Platform$endian.
Endianness describes the bytes order of data stored within the files. This parameter may not be modified.
whether to display information (use for debugging purpose). Default is FALSE.
quantity of information displayed when verbose is TRUE; 1: normal, 2: rich. Default is 1.
whether to overwrite file or not. Default is FALSE.
Note that if TRUE, it will overwrite exported file if paths of files in 'fileName' and deduced from 'write_to' arguments are different.
Otherwise, you will get an error saying that overwriting source file is not allowed.
Note also that an original file, i.e. generated by IDEAS(R) or INSPIRE(R), will never be overwritten.
Otherwise, you will get an error saying that overwriting original file is not allowed.
whether to display a progress bar. Default is TRUE.
whether to register files' paths and objects' ids in the exported file. Default is TRUE.
other arguments to be passed.