I'm trying to download a single file with a GET request URL that doesn't specify the filename of the returned file. It returns zip files if you request multiple filter items, but single xlsx files if you only have one filter item. I want to download the file into a folder then find out its name, rather than save it into a tempfile with a random name.
# web GET request
web <- "https://www.find-school-performance-data.service.gov.uk/download-data?download=true®ions=0&filters=GIAS&fileformat=xls&year=2021-2022&meta=false"
tf <- tempfile()
td <- tempdir()
# this works fine, but gives the file a random name
download.file(web, tf, mode="wb")
#these don't work as it wants me to give the full file name, not just the folder
download.file(web, td, mode="wb")
download.file(web, paste0(td,"\\"), mode="wb")
Warning messages:
1: In download.file(web, paste0(td, "\\"), mode = "wb") :
URL https://www.find-school-performance-data.service.gov.uk/download-data?download=true®ions=0&filters=GIAS&fileformat=xls&year=2021-2022&meta=false: cannot open destfile 'C:\Users\USER\AppData\Local\Temp\RtmpWi98JC\', reason 'No such file or directory'
2: In download.file(web, paste0(td, "\\"), mode = "wb") :
download had nonzero exit status
using
httr
we can fetch the name of the file being returned. This means a double GET request, but it works