Create Directory Script

Create Directory scripts is used to make new folder on you web server.

Demo :



New Directory Name :  
       
Folder inside have 3 files available thats are :

Warning: mysqli_fetch_object() expects parameter 1 to be mysqli_result, boolean given in /home/tutorialsscripts/public_html/free-php-scripts/file-and-directory-script/create-directory.php on line 82

Example :

In the above demo is used to create directory script.just type folder name at New Directory Name and then click to create button and see below of new folder.

Code :

Following code is use to Create Directory script if you need code to copy and use to your website.


<?php
  $directory_name = "New Folder";
  mkdir($directory_name);
?>

In the above $directory_name script is used to assign a new folder name and mkdir() function is used to create a new folder of web server.

Free Download Script :

If you need create Directory Script click and download from following link.

Download




Content