Removing directory using codeigniter

后端 未结 4 1008
隐瞒了意图╮
隐瞒了意图╮ 2020-12-20 15:47

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

4条回答
  •  情歌与酒
    2020-12-20 15:51

    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
    

提交回复
热议问题