I download data on internet with the download.file function inserted in a loop. My loop looks like this :
for (i in 1:9999999) {
download.file(paste("website_path",file[i],sep = ""),
paste("home_path", file_name[i], sep = ""),
mode="wb")
}
It works well, but sometimes an error message occurs. And when I manually relaunch the loop, an error message occurs again but for another file (the former file for which the error message occurs has been downloaded this time)
Therefore, I am looking for a command which allows me to relaunch automatically the for loop after an error message
Thanks for help
Have you considered using
try(download.file(...))
in your loop? Example: