My code creates a zip file by calling,
Cloudinary.Multi()
Now I've to delete images.zip on cloudinary.
Cloudinary.DeleteResourcesByTag() //don't work because images.zip has no tag to it.
Cloudinary.DeleteAllResources() // Deletes all images. Zip files persist
Cloudinary.DeleteResources() //May work, what parameters should I pass to it?
I'm using Cloudinary .Net with PowerShell. An answer in C# or any syntax will be o.k
How can I delete the zip?