Delete buckets

You can delete a bucket from various command-line tools or the Storj Console.

To remove an empty bucket:

$
rclone rmdir storj:my-bucket
$
rclone rmdir storj:my-bucket

To remove all objects from the bucket if the encryption phrase is not lost:

$
rclone delete --rmdirs storj:my-bucket
$
rclone delete --rmdirs storj:my-bucket

To remove the not empty bucket even if the encryption phrase is lost:

$
rclone purge storj:my-bucket
$
rclone purge storj:my-bucket
Previous
Create buckets