delete file from folder
- Single Page
Posted 13 March 2012 - 09:13 AM
Please anyone help me.
Thanks
Best regard
tola
Posted 02 July 2012 - 20:54 PM
Did you ever get this to work? I also need to figure out how to do this.
JB
Posted 02 July 2012 - 22:59 PM
What version of GCRUD are you using?
Make sure you have the proper permissions on the folder to write/read.
Posted 03 July 2012 - 22:20 PM
Posted 03 July 2012 - 22:33 PM
$crud->callback_before_delete(array($this,'crud_delete_file'));
public function crud_delete_file($primary_key)
{
$row = $this->db->where('id',$primary_key)->get('your_table_name')->row();
unlink('your_folder/uploads/files/'.$row->file_url);
return true;
}
Posted 04 July 2012 - 00:22 AM