We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently Bun's implementation of S3 only allows us to delete a single file / object at the time.
Example:
await client.delete("my-file.txt");
delete function should accept array of paths / keys for deletion.
await client.delete(["my-file.txt","another-file.txt"]);
Using S3 library from AWS, we can delete multiple keys at once.
The text was updated successfully, but these errors were encountered:
On it
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
What is the problem this feature would solve?
Currently Bun's implementation of S3 only allows us to delete a single file / object at the time.
Example:
What is the feature you are proposing to solve the problem?
delete function should accept array of paths / keys for deletion.
Example:
What alternatives have you considered?
Using S3 library from AWS, we can delete multiple keys at once.
Example:
The text was updated successfully, but these errors were encountered: