Answers for "if php not create folder with mkdir showw r=error"

PHP
1

linux php script create directory if doesn't exist

$path = "sample/path/newfolder";
if (!file_exists($path)) {
    mkdir($path, 0777, true);
}
Posted by: Guest on May-27-2021
1

php mkdir if not exists

<?php
if (!file_exists('path/to/directory')) {
  	/**
     * 0755 - Permission
     * true - recursive?
     */
    mkdir('path/to/directory', 0755, true);
}
Posted by: Guest on February-13-2021

Code answers related to "if php not create folder with mkdir showw r=error"

Browse Popular Code Answers by Language