<?php
$directory = "./videos/category/";
if (!file_exists($directory)) {
mkdir($directory, 0777, true);
}
?>
$directory = "/var/www/videos/";
if (file_exists($directory) && is_dir($directory))
{
echo "Sure, exists and is dir";
}else{
echo "Not exists. Creating...";
mkdir($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";
}
?>