hey can anyone help me how to upload multiple files at a time to appwrite storage. using reactjs
Hello! You will need to upload the files individually one after another instead of all files at the same time
Since you need to create each file in the storage
but in my use case user will upload multiple file at a time
how should i do that???
In your code, basically you make a loop and when a file ends being uploaded, you upload the next one
Recommended threads
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...
- apple exchange code to token
hello guys, im new here 🙂 I have created a project and enabled apple oauth, filled all data (client id, key id, p8 file itself etc). I generate oauth code form...
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...