I\'m new to codeigniter so please forgive me, I am trying to make codeigniter delete a base folder (I don\'t know what the right term is, it\'s the folder where I put my up
You can do it using "delete_files" function:
$path = "the path that has files those will be deleted";
$this->load->helper("file"); // load codeigniter file helper
delete_files($path, true , false, 1); // second and the last parameters are required, second parameter should be true and the last parameter should be greater than 0