Description Usage Arguments Value See Also Examples
Reads the values in the
configuration file created by batch_config()
.
1 | batch_config_read(path)
|
path |
A string of the path to the directory with the files for processing. |
A named list of the configuration values.
batch_process()
and batch_log_read()
1 2 3 4 5 6 | path <- tempdir()
write.csv(mtcars, file.path(path, "file1.csv"))
batch_config(function(x) TRUE, path, regexp = "[.]csv$")
batch_config_read(path)
batch_cleanup(path, force = TRUE, remaining = TRUE)
unlink(file.path(path, "file1.csv"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.