search
Homephp教程php手册php复制目录下所有文件到另一目录中

在php中要复制一个目录的文件到另一个目录我们需要遍历指定目录,然后再复制一个个利用copy函数把目录的文件复制到新的目录即可了,下面我来介绍一个实例。


遍历某文件夹下的所有文件和文件夹,并且把所以匹配的文件复制到同一目录。下面例子把”/www/pooy/baike”目录里面的,所有html文件都复制到”/www/pooy/bk”这个目录下面。

 代码如下 复制代码

$dir="/www/pooy/baike";
 static $dir_list =0;
 static $file_list =0;
 function listfile($dir){
 global $dir_list,$file_list;
 $d = dir($dir);
 while ( $entry = $d->read()) {
 $tem_curnt=$dir."/".$entry;
 //echo  $tem_curnt."
";
 if($entry=="." || $entry=="..") continue;
 if ( is_dir( $tem_curnt)) {
 listfile($tem_curnt);
 echo "文件夹 ".$tem_curnt."
";
$dir_list++;
 }
 elseif ( is_file($tem_curnt))
 {
 echo "文件".$tem_curnt."
";
 _copy($tem_curnt,"/www/pooy/bk");
 $file_list++;
 }
 }
 $d->close();
 }
function _copy($src, $dst) {
 if ( ! is_dir($src)) {
 if ( ! copy($src, $dst)) {
 return _log('Unable to copy files', $src);
 }
 } else {
 mkdir($dst);
 $ls = scandir($src);
for ($i = 0; $i  if ($ls[$i] == '.' OR $ls[$i] == '..') continue;
$_src = $src.'/'.$ls[$i];
 $_dst = $dst.'/'.$ls[$i];


if ( is_dir($_src)) {
 if ( ! _copy($_src, $_dst)) {
 return _log('Unable to copy files', $_src);
 }
 } else {
 if ( ! copy($_src, $_dst)) {
 return _log('Unable to copy files', $_src);
 }
 }
 }
 }
 return TRUE;
 }listfile($dir);
 echo "目录数:".$dir_list;
 echo"
";
 echo"文件数:".$file_list;



Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.