Download multiple files with a progress bar. Retries failed downloads up to 3 times.
spod_multi_download_with_progress(
files_to_download,
chunk_size = 1024 * 1024,
bar_width = 20,
show_progress = interactive() && !isTRUE(getOption("knitr.in.progress"))
)
A data frame with columns target_url
, local_path
, file_size_bytes
and local_file_size
.
A data frame with columns target_url
, local_path
and file_size_bytes
.
Number of bytes to download at a time.
Width of the progress bar.
Whether to show the progress bar.