objective c - AWS s3 - Delete multiple objects in iOS -


i trying delete multiple objects in amazon cloud service in objective-c.

after searching internet, find how delete 1 object:

    awss3 *s3 = [awss3 defaults3];     awss3deleteobjectrequest *deleterequest = [awss3deleteobjectrequest new];     deleterequest.bucket = yourbucket;     deleterequest.key = yourkey;     [[s3 deleteobject:deleterequest] continuewithblock:^id(awstask *task) {         return task;     }]; 

however, want able delete multiple objects bucket in 1 request. please help!!

thank much

there call called awss3deleteobjectsrequest (plural) allows delete multiple objects if know of keys. check out documentation here.


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -