Delete folder with php
im building app where each listing has pictures and im creating folders for all listings to store pictures inside. so when listing is deleted whole folder can be deleted. and i can't find anything on deleting whole folder with images inside. im using laravel with cloudder wrapper.
0
-
I just ended up using guzzlehttp worked out pretty good. anyone wondering
$client = new GuzzleHttp\Client();
$res = $client->request('DELETE', 'https://api.cloudinary.com/v1_1/(cloud-name)/folders/(folder-name)', [
'auth' => ['api key', 'secret key']
]);
echo $res->getStatusCode();3 -
Thank you for the update!
0
Post is closed for comments.
Comments
2 comments