Magento – How to Delete an Image from Media Folder

adminadminhtmldatabasemagento-1.7magento-1.8

Is there any method to delete files in magento? I have a custom module using which I can upload images to the folder media. Now I am planning to provide a delete option under each uploaded images(uploaded images will display in my module). When delete option clicked, it should delete images from media folder and its name from the custom table

custom table name : banner
custom field name for storing image names :  images
         (names are separated by commas)
module : custom admin module use to upload multiple images
module model name : banner/banner

Is it really necessary to delete images from media folder. Please provide your suggestions. Thanks in advance

Best Answer

Because Magento is based on PHP, there is a method to delete files: unlink ;-)

Beside of this very basic method I can't find any class in Magento or the attached Zend_Framework which offers a file abstraction.

Related Topic