| tar_exist_objects {targets} | R Documentation |
Check if local output data exists for one or more targets.
Description
Check if output target data exists in either
_targets/objects/ or the cloud for one or more targets.
Usage
tar_exist_objects(
names,
cloud = TRUE,
store = targets::tar_config_get("store")
)
Arguments
names |
Character vector of target names.
Not |
cloud |
Logical of length 1, whether to include
cloud targets in the output
(e.g. |
store |
Character of length 1, path to the
|
Details
If a target has no metadata or if the repository
argument of tar_target() was set to "local",
then the _targets/objects/ folder is checked. Otherwise,
if there is metadata and repsitory is not "local",
then tar_exist_objects() checks the cloud repository
selected.
Value
Logical of length length(names), whether
each given target has an existing file in either
_targets/objects/ or the cloud.
See Also
Other existence:
tar_exist_meta(),
tar_exist_process(),
tar_exist_progress(),
tar_exist_script()
Examples
tar_exist_objects(c("target1", "target2"))