Tutorial on simulating xcopy function _ PHP

Source: Internet
Author: User
Simulate xcopy functions. Simulate xcopy functions? Php ************************************ system name: simulate xcopy function * program function: simulate xcopy function * development date: 20030314 ************* simulate xcopy function /*************************************
* System name: simulate xcopy function
* Program function: simulates xcopy functions.
* Development date: 2003/03/14
*************************************/
?>
// Copy a ction's all files to another direction
Function xCopy ($ source, $ destination, $ child ){
// Usage:
// XCopy ("feiy", "feiy2", 1): copy the file under feiy to feiy2, including subdirectories
// XCopy ("feiy", "feiy2", 0): copy the file under feiy to feiy2, excluding subdirectories.
// Parameter description:
// $ Source: source directory name
// $ Destination: name of the target Directory
// $ Child: indicates whether the subdirectory is included during replication.
If (! Is_dir ($ source )){
Echo ("Error: the $ source is not a direction! ");
Return 0;
}
If (! Is_dir ($ destination )){
Mkdir ($ destination, 0777 );
}


$ Handle = dir ($ source );
While ($ entry = $ handle-> read ()){
If ($ entry! = ".") & ($ Entry! = "..")){
If (is_dir ($ source. "/". $ entry )){
If ($ child)
XCopy ($ source. "/". $ entry, $ destination. "/". $ entry, $ child );
}
Else {

Copy ($ source. "/". $ entry, $ destination. "/". $ entry );
}

}
}

Return 1;
}

?>

Why? Php /************************************** system name: simulate xcopy function * program function: simulate xcopy function * development date: 2003/03/14 ************...

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.