Currently, this only deals with drive_download
,
and download.file
.
downloadFile(
archive,
targetFile,
neededFiles,
destinationPath = getOption("reproducible.destinationPath"),
quick,
checksumFile,
dlFun = NULL,
checkSums,
url,
needChecksums,
overwrite = getOption("reproducible.overwrite", TRUE),
purge = FALSE,
.tempPath,
...
)
Optional character string giving the path of an archive
containing targetFile
, or a vector giving a set of nested archives
(e.g., c("xxx.tar", "inner.zip", "inner.rar")
). If there is/are (an) inner
archive(s), but they are unknown, the function will try all until it finds
the targetFile
. See table in preProcess
.
Character string giving the path to the eventual file
(raster, shapefile, csv, etc.) after downloading and extracting from a zip
or tar archive. This is the file before it is passed to
postProcess
. Currently, the internal checksumming does not checksum
the file after it is postProcess
ed (e.g., cropped/reprojected/masked).
Using Cache
around prepInputs
will do a sufficient job in these cases.
See table in preProcess
.
Character string giving the name of the file(s) to be extracted.
Character string of a directory in which to download
and save the file that comes from url
and is also where the function
will look for archive
or targetFile
. NOTE (still experimental):
To prevent repeated downloads in different locations, the user can also set
options("reproducible.inputPaths")
to one or more local file paths to
search for the file before attempting to download. Default for that option is
NULL
meaning do not search locally.
A character string indicating the absolute path to the CHECKSUMS.txt
file.
Optional "download function" name, such as "raster::getData"
, which does
custom downloading, in addition to loading into R. Still experimental.
A checksums file, e.g., created by Checksums(..., write = TRUE)
Optional character string indicating the URL to download from.
If not specified, then no download will be attempted. If not entry
exists in the CHECKSUMS.txt
(in destinationPath
), an entry
will be created or appended to. This CHECKSUMS.txt
entry will be used
in subsequent calls to
prepInputs
or preProcess
, comparing the file on hand with the ad hoc
CHECKSUMS.txt
. See table in preProcess
.
A numeric, with 0
indicating do not write a new checksums,
1
write a new one,
2
append new information to existing one.
Logical. Should downloading and all the other actions occur even if they pass the checksums or the files are all there.
Logical or Integer. 0/FALSE
(default) keeps existing
CHECKSUMS.txt
file and
prepInputs
will write or append to it. 1/TRUE
will deleted the entire
CHECKSUMS.txt
file. Other options, see details.
Optional temporary path for internal file intermediate steps. Will be cleared on.exit from this function.
Passed to dlFun
. Still experimental.