Functions that simulate Xcopy /*************************************
* System name: function to simulate xcopy
* Program function: Simulate the function of Xcopy
* Development Date: 2003/03/14
*************************************/
?>
Copy a direction ' s all files to another direction
function XCopy ($source, $destination, $child) {
Usage:
XCopy ("Feiy", "Feiy2", 1): Copy files under Feiy to Feiy2, including subdirectories
XCopy ("Feiy", "Feiy2", 0): Copy files under Feiy to Feiy2, excluding subdirectories
Parameter description:
$source: Source directory Name
$destination: Destination directory Name
$child: When copying, is not a contained subdirectory
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{
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.