Skip to contents

Returns the absolute /mnt/project/ path of the CSV produced by extract_batch(). Use this to read the file directly on the RAP without downloading.

Usage

job_path(job_id)

Arguments

job_id

(character) Job ID returned by extract_batch().

Value

A character string — the absolute path to the output CSV under /mnt/project/.

Examples

if (FALSE) { # \dontrun{
path <- job_path(job_id)
df   <- data.table::fread(path)
} # }