PHP Copy and move directory

Source: Internet
Author: User

<?php
Rename a file or directory
Rename ("phpMyAdmin", "phpadmin");//Rename to Phpadmin

/*
* $DIRSRC Original Directory
* $dirto target Directory
*/

function Copydir ($DIRSRC, $dirto) {

If the original file exists, the judge is not a directory
if (file_exists ($dirto)) {
if (!is_dir ($dirto)) {
echo "Target is not a directory, can not copy into <br>";
Exit
}
}else{
mkdir ($dirto);
}

$dir = Opendir ($DIRSRC);

while ($filename = Readdir ($dir)) {
if ($filename! = "." && $filename! = "...") {
$srcfile = $dirsrc. " /". $filename; Original file
$tofile = $dirto. " /". $filename; Target file

if (Is_dir ($srcfile)) {
Copydir ($srcfile, $tofile); Recursively process all subdirectories
}else{
Files are copied to the target directory
Copy ($srcfile, $tofile);
}
}
}
}

Copydir ("Phpadmin", "d:/phpadmin");

PHP Copy and move directory

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.