La carpeta de comprobación de PHP existe y crea
if (!file_exists('path/to/directory')) {
mkdir('path/to/directory', 0777, true);
}
Shadow
if (!file_exists('path/to/directory')) {
mkdir('path/to/directory', 0777, true);
}
<?php
$filename = '/path/to/foo.txt';
if (file_exists($filename)) {
echo "The file $filename exists";
} else {
echo "The file $filename does not exist";
}
?>