Learn R Programming

batchr (version 0.0.2)

batch_file_status: Batch File Status

Description

Gets the current status (SUCCESS, FAILURE, REMAING) of each eligible file in path.

Usage

batch_file_status(path)

Arguments

path

A string of the path to the directory with the files for processing.

Value

A tibble with four columns:

type

A character vector indicating SUCCESS, FAILURE or REMAING

time

A hms vector of the file processing time

file

A character vector of the file name

error

A character vector of the error message (or NA if no error)

See Also

batch_log_read()

Examples

Run this code
# NOT RUN {
path <- tempdir()
write.csv(mtcars, file.path(path, "file1.csv"))
batch_config(function(x) TRUE, path, regexp = "[.]csv$")
batch_file_status(path)
batch_run(path, ask = FALSE)
batch_file_status(path)
batch_cleanup(path)
unlink(file.path(path, "file1.csv"))
# }

Run the code above in your browser using DataLab