mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-09-18 22:17:54 +08:00
S3: DeleteObject API also support deleting a folder recursively
This commit is contained in:
@@ -105,7 +105,7 @@ func (s3a *S3ApiServer) DeleteObjectHandler(w http.ResponseWriter, r *http.Reque
|
||||
bucket := vars["bucket"]
|
||||
object := getObject(vars)
|
||||
|
||||
destUrl := fmt.Sprintf("http://%s%s/%s%s",
|
||||
destUrl := fmt.Sprintf("http://%s%s/%s%s?recursive=true",
|
||||
s3a.option.Filer, s3a.option.BucketsPath, bucket, object)
|
||||
|
||||
s3a.proxyToFiler(w, r, destUrl, func(proxyResponse *http.Response, w http.ResponseWriter) {
|
||||
|
Reference in New Issue
Block a user