Download Documents
Arguments
- query
An object of class
HALQuery
(typically returned byhal_query()
).- ...
Currently not used.
- destination
A
character
string giving the directory path where the downloaded files are to be saved.- limit
An
integer
giving the maximum number of results. According to HAL policy, it cannot exceed 10000.- start
An
integer
specifying an absolute offset in the complete sorted list of matches to be used as the beginning of the current page. Only used ifcursor
isFALSE
.- progress
A
logical
scalar: should a progress bar for for the request be printed?- verbose
A
logical
scalar: should extra information be reported?
See also
Other search tools:
hal_search()
Examples
if (FALSE) { # \dontrun{
## Download the 10 most recent archaeological publication
## (if any files)
hal_query("archéologie") |>
hal_filter("ART" %IN% "docType_s") |>
hal_sort("producedDate_tdate", decreasing = TRUE) |>
hal_download(limit = 10)
} # }