react-native-background-downloader
react-native-background-downloader copied to clipboard
Download files in batches
Is there a way to download files in batches, similar to axios.all
.
For example, I have a set of data returned by a web server, and I request fileUrl files based on the returned data,
Of course, it also needs to delete local files with the same name.
[
{
"id": "1",
"fileUrl": "ed2k://1.ts"
},
{
"id": "2",
"fileUrl": "ed2k://2.ts"
}
]
did you find any solution for that?