> 백엔드 개발 > PHP 튜토리얼 > php怎么复制文件夹

php怎么复制文件夹

WBOY
풀어 주다: 2016-06-13 12:11:34
원래의
1411명이 탐색했습니다.

php如何复制文件夹?

php只有复制文件函数copy()。闲来无事用递归写了一个复制目录的递归函数来练练手,还花了我不少的时间。看来还是得勤练习多思考。


<?php /*复制当前目录下所有的文件去目标文件夹$cpath 当前目录$dpath 目标目录$type all复制当前所有文件去目标目录,dir复制所有文件至同一目录$i 用来统计数量总*/function copydir_user($cpath,$dpath,&$i,$type=&#39;all&#39;){	if($i == 0){		if(!($cpath = judge_dir($cpath,true))){			return false;		}		$dpath = judge_dir($dpath,false);	}	$handle = opendir($cpath);	while (false !== ($file = readdir($handle))) {		if($file!=&#39;.&#39;&&$file!=&#39;..&#39;){			if(is_dir($cpath.$file)){				$scpath = $cpath.$file.&#39;/&#39;;				$sdpath = $dpath;				if($type == &#39;dir&#39;){					$sdpath = $dpath.$file.&#39;/&#39;;					$sdpath = judge_dir($sdpath,false);				}				copydir_user($scpath,$sdpath,$i,$type);			}else{				$current = $cpath.$file;				$source = $dpath.$file; 				copy($current,$source);				$i++;			}	   }   	}}function judge_dir($dirname,$tips=true){	if(substr($dirname,strlen($dirname)-1) != &#39;/&#39;){		$dirname.=&#39;/&#39;;			}	if(!file_exists($dirname)){		if($tips){			echo &#39;directory is not exists&#39;;			return false;		}else{			mkdir($dirname);		}	}	return $dirname;}$des_path=&#39;C:/Users/alex/Desktop/test&#39;;//目标目录$cur_path = &#39;E:/xampp/htdocs/bbs/api&#39;; //当前目录$i=0;copydir_user($cur_path,$des_path,$i,&#39;dir&#39;);echo $i;
로그인 후 복사

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿