exiftool_call: Call exiftool from R
Description
Uses system()
to run a basic call to exiftool
.
Usage
exiftool_call(args = NULL, fnames = NULL, intern = FALSE, ..., quiet = FALSE)exiftool_version()
exiftool_command(args = character(0), fnames = character(0))
Arguments
args
a list of non-shell quoted arguments (e.g. -n -csv
)
fnames
a list of filenames (shQuote()
will be applied to this vector)
intern
TRUE
if output should be returned as a character vector.
...
additional arguments to be passed to system2
quiet
Suppress output of the command itself.
Value
The exit code if intern=FALSE
, or the standard output as a character vector
if intern=TRUE
.
Examples
Run this code# NOT RUN {
exiftool_call()
exiftool_version()
# }
Run the code above in your browser using DataLab