Is it possible to download multiple files from an url into one created folder or as a zip?
I currently download a file given a url like so:
var download_url = "";
window.location.href = download_url;
If I were to have an array of urls, I could do something like...
for each url in urls
window.location.href = url;
This works, but will lead to individual downloaded files in the downloads folder. This can be messy.
Is it possible to create and specify which folder to download all of the files or convert all the downloaded files into a zip?