CakePHP version 4 create folder if not exist

Viewed 175

I have seen cakephp documentation they have File& Folder class. They declared this class has deprecated.

Now mkdir() is it the best way to create folder in cakephp version 4 ?

if (!is_dir('path/to/directory')) {
    mkdir('path/to/directory', 0777, true);
}

Is it enough or has there best way ?

0 Answers
Related