download_data {FedData} | R Documentation |
Use curl to download a file.
Description
This function makes it easy to implement timestamping and no-clobber of files.
Usage
download_data(
url,
destdir = getwd(),
timestamping = TRUE,
nc = FALSE,
verbose = FALSE,
progress = FALSE
)
Arguments
url |
The location of a file. |
destdir |
Where the file should be downloaded to. |
timestamping |
Should only newer files be downloaded? |
nc |
Should files of the same type not be clobbered? |
verbose |
Should cURL output be shown? |
progress |
Should a progress bar be shown with cURL output? |
Details
If both timestamping
and nc
are TRUE, nc behavior trumps timestamping.
Value
A character string of the file path to the downloaded file.
[Package FedData version 4.0.1 Index]