Console application to manipulate bucket/objects using Wasabi cloud storage: https://wasabi.com/
- Create bucket
- Upload an object to a bucket
- Download a specific object from a bucket
- Download all objects from a bucket
- Delete a specific object from a bucket
- Delete all objects from a bucket
- Move objects between buckets
- Add unit test to the project.
Replace your wasabi url/keys in the appsettings.json:
{
"Wasabi": {
"URL": "YOUR_WASABI_URL",
"Credentials": {
"AccessKey": "YOUR_WASABI_CLIENT_KEY",
"SecretKey": "YOUR_WASABI_SECRET_KEY"
}
}
}
You can get those details at https://docs.wasabi.com/docs/creating-a-user-account-and-access-key. You can create a FREE trial account.