PHP - Delete Directory With Files Instantly

In this tutorial we will create a Delete Directory With Files Instantly using PHP. PHP is a server-side scripting language designed primarily for web development. Using PHP, you can let your user directly interact with the script and easily to learned its syntax. It is mostly used by a newly coders for its user friendly environment. So Let's do the coding...

Getting started:

First you have to download & install XAMPP or any local server that run PHP scripts. Here's the link for XAMPP server https://www.apachefriends.org/index.html. Lastly, this is the link for the bootstrap that i used for the layout design https://getbootstrap.com/.

Creating The Interface

This is where we will create a simple form for our application. To create the forms simply copy and write it into your text editor, then save it as index.php.
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.         <head>
  4.                 <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  5.                 <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  6.         </head>
  7.        
  8. <body>
  9.         <nav class="navbar navbar-default">
  10.                 <div class="container-fluid">
  11.                         <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  12.                 </div>
  13.         </nav>
  14.         <div class="col-md-3"></div>
  15.         <div class="col-md-6 well">
  16.                 <h3 class="text-primary">PHP - Delete Directory With Files Instantly</h3>
  17.                 <hr style="border-top:1px dotted #ccc;"/>
  18.                 <table class="table table-bordered">
  19.                         <thead class="alert-info">
  20.                                 <tr>
  21.                                         <th>Directory Name</th>
  22.                                         <th>Action</th>
  23.                                 </tr>
  24.                         </thead>
  25.                         <tbody style="background-color:#fff;">
  26.                                 <?php
  27.                                         $files = scandir('files/');
  28.                                         foreach ($files as $file){
  29.                                                 if($file != '.' && $file !='..'){
  30.                                 ?>
  31.                                 <tr>
  32.                                         <td><?php echo $file?></td>
  33.                                         <td><a class="text-danger" href="delete.php?directory=<?php echo $file?>">Remove</a></td>
  34.                                 </tr>
  35.                                 <?php
  36.                                                 }
  37.                                         }
  38.                                 ?>
  39.                         </tbody>
  40.                 </table>
  41.         </div>
  42. </body>
  43. </html>

Creating Main Function

This is where the main function of the application. This code will delete the directory and the file inside of it when the button is clicked. To do this just copy and write these block of codes inside the text editor, then save it as delete.php.
  1. <?php
  2.         if(ISSET($_REQUEST['directory'])){
  3.                 $directory = $_REQUEST['directory'];
  4.                 if(file_exists("files/".$directory)){
  5.                         removeDir("files/".$directory);
  6.                         header("location: index.php");
  7.                 }
  8.         }
  9.        
  10.         function removeDir($dir) {
  11.                 $items = scandir($dir);
  12.                 foreach ($items as $item) {
  13.                         if ($item === '.' || $item === '..') {
  14.                                 continue;
  15.                         }
  16.                         $path = $dir.'/'.$item;
  17.                         if (is_dir($path)) {
  18.                                 xrmdir($path);
  19.                         } else {
  20.                                 unlink($path);
  21.                         }
  22.                 }
  23.                 rmdir($dir);
  24.         }
  25. ?>
There you have it we successfully created Delete Directory With Files Instantly Using PHP. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

Comments

Thanks for the tutorial and code. Possible to modify and add option to "exclude" chosen directories? Having option to hide certain directories would come in very handy:) Cheers!

After trying, I get the following error after clicking "Remove" on a directory: PHP Fatal error: Uncaught Error: Call to undefinded function xrmdir() delete.php line 19 Running 7.2.1 on XAMPPS.

Add new comment