Answers for "check if directory exists else create php"

PHP
3

php check folder exists and create

if (!file_exists('path/to/directory')) {
    mkdir('path/to/directory', 0777, true);
}
Posted by: Guest on January-02-2022
2

php check if folder exists

<?php
$filename = '/path/to/foo.txt';

if (file_exists($filename)) {
    echo "The file $filename exists";
} else {
    echo "The file $filename does not exist";
}
?>
Posted by: Guest on December-01-2020

Code answers related to "check if directory exists else create php"

Browse Popular Code Answers by Language