日期:2014-05-17 浏览次数:20489 次
function copy_module_file($path,$newp){
if(!is_dir($newp)){
mkdir($newp);
}
if (file_exists($path)){
if(is_file($path)){
copy($path,$newp);
} else{
$handle = opendir($path);
while (($file = readdir($handle))!='') {
if (($file!=".") && ($file!="..") && ($file!="")){
if (is_dir("$path/$file")){
copy_module_file("$path/$file","$newp/$file");
} else{
copy("$path/$file","$newp/$file");
}
}
}
closedir($handle);
}
}
}
if (is_dir("$path/$file") && in_array($file,array('1','2','3','4'))){