Answers for "php create directory if not exists"

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
6

create folder php

// Create folder if not exist
		$folderName = 'images/gallery';
		$config['upload_path'] = $folderName;
		if(!is_dir($folderName))
		{
			mkdir($folderName, 0777);
		}
Posted by: Guest on August-26-2020
0

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
4

php mkdir

// Create a directory with the permission level (optional)
<?php
mkdir("/path/to/my/dir", 0700);
?>
Posted by: Guest on April-14-2020
2

php mkdir recursive

<?php
// Create a directory recursively (make sure to sanitize if taken from input as always!)
mkdir("/path/to/my/dir", 0777, true);
Posted by: Guest on June-30-2020

Code answers related to "php create directory if not exists"

Browse Popular Code Answers by Language