Published
- 1 min read
codeigniter 3 delete all files in directory
The solution for this is noted below
codeigniter 3 delete all files in directory
Solution
$this->load->helper('file');
delete_files('./path/to/directory/');
Or if you want to include subfolders recursvively
delete_files('./path/to/directory/', TRUE);
Try other methods by searching on the site. That is if this doesn’t work