Downloads a CSV object stored in a MinIO bucket and reads it into memory
as a data.frame. Internally, the function retrieves the object
contents as raw bytes using minio_get_object and then
delegates parsing to read.csv.
Arguments
- bucket
Character. Name of the MinIO bucket.
- object
Character. Object key (path) of the CSV file within the bucket.
- ...
Additional arguments passed to
read.csv(), such assep,header,stringsAsFactors,fileEncoding, etc.
Details
Additional arguments are passed directly to read.csv(), allowing
control over separators, headers, encoding, and other parsing options.
