“PHP -Verzeichnis existiert” Code-Antworten

Das Überprüfungsverzeichnis gibt es in PHP

<?php
$directory = "./videos/category/";
if (!file_exists($directory)) {
  mkdir($directory, 0777, true);
}
?>
Glorious Gaur

PHP -Datei existiert

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

if (file_exists($filename)) {
    echo "The file $filename exists";
} else {
    echo "The file $filename does not exist";
}
?>
The Red-est of Firebreaks

PHP -Verzeichnis existiert

$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);
}
Tiago F2

PHP -Überprüfen Sie, ob der Ordner vorhanden ist


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

if (file_exists($filename)) {
    echo "The file $filename exists";
} else {
    echo "The file $filename does not exist";
}
?>

Encouraging Eagle

Ähnliche Antworten wie “PHP -Verzeichnis existiert”

Fragen ähnlich wie “PHP -Verzeichnis existiert”

Weitere verwandte Antworten zu “PHP -Verzeichnis existiert” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen