I'm queuing multiple downloads to happen very quickly with code similar to the following
const download = (files: string[]) => {
const directory = path.join(app.getPath('userData'), 'downloadCache');
files.forEach(file => {
download(file, {
saveAs: false,
directory
}
});
}
All files will be downloaded into the folder downloadCache
inside the userData
directory.
The first several files will download as expected, with all remaining downloads going to the default download directory specified in the registration function
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too
We use tracking cookies to understand how you use the product and help us improve it.