Answers for "check exist dir php"

PHP
0

check directory exists in php

<?php
$directory = "./videos/category/";
if (!file_exists($directory)) {
  mkdir($directory, 0777, true);
}
?>
Posted by: Guest on January-19-2021
0

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

Browse Popular Code Answers by Language