PHP - Move File To Other Directory

In this tutorial we will create a Move File To Other Directory using PHP. Using PHP, you can let your user directly interact with the script and easily to learned its syntax. jQuery is a cross-platform JavaScript library designed to simplify the client-side scripting of HTML. It is designed to make it easier to navigate a document, via classes and id's attribute. So let's now 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. <body>
  8.         <nav class="navbar navbar-default">
  9.                 <div class="container-fluid">
  10.                         <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  11.                 </div>
  12.         </nav>
  13.         <div class="col-md-2"></div>
  14.         <div class="col-md-8 well">
  15.                 <h3 class="text-primary">PHP - Move File To Other Directory</h3>
  16.                 <hr style="border-top:1px dotted #ccc;"/>
  17.                 <button class="btn btn-success" data-toggle="modal" data-target="#form_modal"><span class="glyphicon glyphicon-plus"></span> Add File</button>
  18.                 <br /><br />
  19.                 <div class="col-md-6">
  20.                         <h4>Directory 1</h4>
  21.                         <div class="table-responsive">
  22.                                 <table class="table table-bordered">
  23.                                         <thead class="alert-info">
  24.                                                 <th>Filename</th>
  25.                                                 <th>Location</th>
  26.                                                 <th>Action</th>
  27.                                         </thead>
  28.                                         <tbody style="background-color:#fff;">
  29.                                                 <?php
  30.                                                         $files = scandir('directory1/');
  31.                                                         foreach($files as $file){
  32.                                                                 if($file != "." && $file != ".."){
  33.                                                 ?>
  34.                                                 <tr>
  35.                                                         <td><?php echo $file?></td>
  36.                                                         <td><?php echo realpath('directory1/'.$file)?></td>
  37.                                                         <td>
  38.                                                                 <form method="POST" action="move_to.php">
  39.                                                                         <input type="hidden" name="file" value="<?php echo $file?>"/>
  40.                                                                         <button class="btn btn-primary" name="move_to"><span class="glyphicon glyphicon-arrow-right"></span> Move</button>
  41.                                                                 </form>
  42.                                                         </td>
  43.                                                 </tr>
  44.                                                 <?php
  45.                                                                 }
  46.                                                         }
  47.                                                 ?>
  48.                                         </tbody>
  49.                                 </table>
  50.                         </div>
  51.                 </div>
  52.                 <div class="col-md-6">
  53.                         <h4>Directory 2</h4>
  54.                         <div class="table-responsive">
  55.                                 <table class="table table-bordered">
  56.                                         <thead class="alert-info">
  57.                                                 <th>Filename</th>
  58.                                                 <th>Location</th>
  59.                                                 <th>Action</th>
  60.                                         </thead>
  61.                                         <tbody style="background-color:#fff;"
  62.                                                 <?php
  63.                                                         $files = scandir('directory2/');
  64.                                                         foreach($files as $file){
  65.                                                                 if($file != "." && $file != ".."){
  66.                                                 ?>
  67.                                                 <tr>
  68.                                                         <td><?php echo $file?></td>
  69.                                                         <td><?php echo realpath('directory2/'.$file)?></td>
  70.                                                         <td>
  71.                                                                 <form method="POST" action="move_to.php">
  72.                                                                         <input type="hidden" name="file" value="<?php echo $file?>"/>
  73.                                                                         <button class="btn btn-primary" name="move_back"><span class="glyphicon glyphicon-arrow-left"></span> Move</button>
  74.                                                                 </form>
  75.                                                         </td>
  76.                                                 </tr>
  77.                                                 <?php
  78.                                                                 }
  79.                                                         }
  80.                                                 ?>
  81.                                         </tbody>
  82.                                 </table>
  83.                         </div>
  84.                 </div>
  85.         </div>
  86.         <div class="modal fade" id="form_modal" tabindex="-1" role="dialog" aria-hidden="true">
  87.                 <div class="modal-dialog" role="document">
  88.                         <form action="save_file.php" method="POST" enctype="multipart/form-data">
  89.                                 <div class="modal-content">
  90.                                         <div class="modal-body">
  91.                                                 <div class="col-md-3"></div>
  92.                                                 <div class="col-md-6">
  93.                                                         <form method="POST" action="">
  94.                                                                 <div class="form-group">
  95.                                                                         <label>File:</label>
  96.                                                                         <input type="file" name="file" class="form-control" required="required"/>
  97.                                                                 </div>
  98.                                                         </form>
  99.                                                 </div>
  100.                                         </div>
  101.                                         <div style="clear:both;"></div>
  102.                                         <div class="modal-footer">
  103.                                                 <button type="button" class="btn btn-danger" data-dismiss="modal"><span class="glyphicon glyphicon-remove"></span> Close</button>
  104.                                                 <button name="save" class="btn btn-primary"><span class="glyphicon glyphicon-save"></span> Save</button>
  105.                                         </div>
  106.                                 </div>
  107.                         </form>
  108.                 </div>
  109.         </div>
  110. </body>
  111. <script src="js/jquery-3.2.1.min.js"></script>
  112. <script src="js/bootstrap.js"></script>
  113. </html>

Creating Save File Function

This code contains the save function of the application. This code will get and store the file to the corresponding directory. To do that just copy and write this block of codes inside the text editor, then save it as save_file.php.
  1. <?php
  2.         if(ISSET($_POST['save'])){
  3.                 $filename = $_FILES['file']['name'];
  4.                 $filesize = $_FILES['file']['size'];
  5.                 $filetemp = $_FILES['file']['tmp_name'];
  6.  
  7.                 if($filesize > 500000){
  8.                         echo "<script>alert('File too large to upload')</script>";
  9.                         echo "<script>window.location = 'index.php'</script>";
  10.                 }else{
  11.                         $file = explode(".", $filename);
  12.                         $file_ext = end($file);
  13.                         $ext = array("png", "jpg", "jpeg");
  14.  
  15.                         if(in_array($file_ext, $ext)){
  16.                                 $location = "directory1/".$filename;
  17.                                 if(move_uploaded_file($filetemp, $location)){
  18.                                         echo "<script>alert('File Saved!')</script>";
  19.                                         echo "<script>window.location = 'index.php'</script>";
  20.                                 }
  21.                         }else{
  22.                                 echo "<script>alert('Only images allowed')</script>";
  23.                                 echo "<script>window.location = 'index.php'</script>";
  24.                         }
  25.                 }
  26.         }
  27. ?>

Creating Main Function

This code contains the main function of the application. This code will move the file from the directory to other directory when the button is clicked. To do that just copy and write this block of codes inside the text editor, then save it as move_to.php.
  1. <?php
  2.         if(ISSET($_POST['move_to'])){
  3.                 $file = "directory1/".$_POST['file'];
  4.                 $newfile = "directory2/".$_POST['file'];
  5.  
  6.                 if(!rename($file, $newfile)){
  7.                         echo "<script>alert('Failed to move ".$file."')</script>";
  8.                         echo "<script>window.location = 'index.php'</script>";
  9.                 }else{
  10.                         echo "<script>alert('Moved!')</script>";
  11.                         echo "<script>window.location = 'index.php'</script>";
  12.                 }
  13.         }
  14.        
  15.         if(ISSET($_POST['move_back'])){
  16.                 $file = "directory2/".$_POST['file'];
  17.                 $newfile = "directory1/".$_POST['file'];
  18.  
  19.                 if(!rename($file, $newfile)){
  20.                         echo "<script>alert('Failed to move ".$file."')</script>";
  21.                         echo "<script>window.location = 'index.php'</script>";
  22.                 }else{
  23.                         echo "<script>alert('Moved!')</script>";
  24.                         echo "<script>window.location = 'index.php'</script>";
  25.                 }
  26.         }
  27. ?>
There you have it we successfully created Move File To Other Directory 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!

Add new comment