Answers for "linux php script create directory if doesn't exist"

PHP
0

linux php script create directory if doesn't exist

$path = "sample/path/newfolder";
if (!file_exists($path)) {
    mkdir($path, 0777, true);
}
Posted by: Guest on May-27-2021

Code answers related to "linux php script create directory if doesn't exist"

Browse Popular Code Answers by Language