PHP - Copy File To Other Directory
Submitted by razormist on Monday, August 27, 2018 - 12:00.
In this tutorial we will create Copy File To Other Directory 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 now do the coding...
There you have it we successfully created Copy 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!
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. And this is the link for the jquery that i used in this tutorial https://jquery.com/. 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 you text editor, then save it as index.php.- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
- <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
- </head>
- <body>
- <nav class="navbar navbar-default">
- <div class="container-fluid">
- <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
- </div>
- </nav>
- <div class="col-md-2"></div>
- <div class="col-md-8 well">
- <h3 class="text-primary">PHP - Copy File To Other Directory</h3>
- <hr style="border-top:1px dotted #ccc;"/>
- <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#form_modal"><span class="glyphicon glyphicon-plus"></span> Add file</button>
- <br /><br />
- <div class="col-md-6">
- <h4>File 1</h3>
- <div class="table-responsive">
- <table class="table table-bordered">
- <thead>
- <tr>
- <th>Filename</th>
- <th>Action</th>
- </tr>
- </thead>
- <tbody>
- <?php
- foreach ($files as $file){
- if($file != '.' && $file !='..'){
- ?>
- <tr>
- <td><?php echo $file?></td>
- <td>
- <?php
- ?>
- <center><button name="copy" class="btn btn-success" disabled="disa"><span class="glyphicon glyphicon-arrow-right"></span> Copied</button></center>
- <?php
- }else{
- ?>
- <form method="POST" action="copy_file.php">
- <center><button name="copy" class="btn btn-success"><span class="glyphicon glyphicon-arrow-right"></span> Copy</button></center>
- <input type="hidden" name="file" value="<?php echo $file?>"/>
- </form>
- <?php
- }
- ?>
- </td>
- </tr>
- <?php
- }
- }
- ?>
- </tbody>
- </table>
- </div>
- </div>
- <div class="col-md-6">
- <h4>File 2</h3>
- <div class="table-responsive">
- <table class="table table-bordered">
- <thead>
- <tr>
- <th>Filename</th>
- </tr>
- </thead>
- <tbody>
- <?php
- foreach ($files as $file){
- if($file != '.' && $file !='..'){
- ?>
- <tr>
- <td><?php echo $file?></td>
- </tr>
- <?php
- }
- }
- ?>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- <div class="modal fade" id="form_modal" tabindex="-1" role="dialog" aria-hidden="true">
- <div class="modal-dialog" role="document">
- <form action="save_file.php" method="POST" enctype="multipart/form-data">
- <div class="modal-content">
- <div class="modal-body">
- <div class="col-md-3"></div>
- <div class="col-md-6">
- <form method="POST" action="">
- <div class="form-group">
- <label>File:</label>
- <input type="file" name="file" class="form-control" required="required"/>
- </div>
- </form>
- </div>
- </div>
- <div style="clear:both;"></div>
- <div class="modal-footer">
- <button type="button" class="btn btn-danger" data-dismiss="modal"><span class="glyphicon glyphicon-remove"></span> Close</button>
- <button name="save" class="btn btn-primary"><span class="glyphicon glyphicon-save"></span> Save</button>
- </div>
- </div>
- </form>
- </div>
- </div>
- </body>
- <script src="js/jquery-3.2.1.min.js"></script>
- <script src="js/bootstrap.js"></script>
- </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.- <?php
- $filename = $_FILES['file']['name'];
- $filesize = $_FILES['file']['size'];
- $filetemp = $_FILES['file']['tmp_name'];
- if($filesize > 500000){
- echo "<script>alert('File too large to upload')</script>";
- echo "<script>window.location = 'index.php'</script>";
- }else{
- $location = "file1/".$filename;
- echo "<script>alert('File Saved!')</script>";
- echo "<script>window.location = 'index.php'</script>";
- }
- }else{
- echo "<script>alert('Only images allowed')</script>";
- echo "<script>window.location = 'index.php'</script>";
- }
- }
- }
- ?>
Creating Main Function
This code contains the main function of the application. This code will copy 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 copy_file.php.- <?php
- $file = "file1/".$_POST['file'];
- $newfile = "file2/".$_POST['file'];
- echo "<script>alert('Failed to copy ".$file."')</script>";
- echo "<script>window.location = 'index.php'</script>";
- }else{
- echo "<script>alert('Copied!')</script>";
- echo "<script>window.location = 'index.php'</script>";
- }
- }
- ?>
Add new comment
- 12 views