From 1917f70f78b0fa3fba7c3fe5d1feeef3d0b50b33 Mon Sep 17 00:00:00 2001 From: chrislu Date: Tue, 7 May 2024 08:46:19 -0700 Subject: [PATCH] also delete parent folder if empty fix https://github.com/seaweedfs/seaweedfs/issues/5567 --- weed/s3api/s3api_object_handlers_delete.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/s3api/s3api_object_handlers_delete.go b/weed/s3api/s3api_object_handlers_delete.go index 197522d0c..580578593 100644 --- a/weed/s3api/s3api_object_handlers_delete.go +++ b/weed/s3api/s3api_object_handlers_delete.go @@ -44,7 +44,7 @@ func (s3a *S3ApiServer) DeleteObjectHandler(w http.ResponseWriter, r *http.Reque directoriesWithDeletion := make(map[string]int) lastSeparator := strings.LastIndex(object, "/") if lastSeparator > 0 { - parentDirectoryPath := fmt.Sprintf("%s/%s", s3a.option.BucketsPath, bucket) + parentDirectoryPath := fmt.Sprintf("%s/%s%s", s3a.option.BucketsPath, bucket, object[:lastSeparator]) directoriesWithDeletion[parentDirectoryPath]++ // purge empty folders, only checking folders with deletions