![]() |
Making Directory PHP Codeigniter - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: Making Directory PHP Codeigniter (/showthread.php?tid=63188) |
Making Directory PHP Codeigniter - wolfgang1983 - 10-05-2015 Hi all, I have been working on a function where can create a folder on my file manger, using mkdir. I would like to know does codeigniter have a helper for that I know the have a helper for creating files but have not see one for creating directories PHP Code: public function folder() { Code: <!-- Create Folder --> RE: Making Directory PHP Codeigniter - CroNiX - 10-05-2015 PHP has a simple native function to do that, so no need for a helper really... http://php.net/manual/en/function.mkdir.php |