How can I delete multiple files from a folder?
code:$query=$this->main_model->get($id); if($query->num_rows()>0) { foreach ($query->result() as $row) { unlink("uploads/".$id."/".$row->img_name); unlink("uploads/".$id."/".$row->img_name_tn); unlink("uploads/".$id."/".$row->file); unlink("uploads/".$id."/".$row->file2); unlink("uploads/".$id."/Thumbs.db"); } rmdir("uploads/".$id); }
here is the code i used but it deletes the files in them. and how can I delete all files from a folder?
source share