Folder copy (both win&linux)
Release: 2016-07-25 09:06:48
Original
976 people have browsed it
复制文件夹到另一个地方。
/**
- /**
- * Copy the folder
- eg: copy D:/wwwroot/wordpress to
- D:/wwwroot/www/explorer/0000/del/1/
- No need to add a slash at the end , if you copy to the address without adding the source folder name,
- the files under wordpress will be copied to D:/wwwroot/www/explorer/0000/del/1/
- * $from = 'D:/wwwroot/wordpress' ;
- * $to = 'D:/wwwroot/www/explorer/0000/del/1/wordpress';
- */
-
- function copy_dir($source, $dest){
- $result = false;
- if (is_file($source)) {
- if ($dest[strlen($dest)-1] == '/') {
- $__dest = $dest . "/" . basename($source);
- } else {
- $__dest = $dest;
- }
- $result = @copy($source, $__dest);
- //echo iconv( $config['app_charset'],$config['system_charset'], $source);
- @chmod($__dest, 0755);
- }elseif (is_dir($source)) {
- if ($dest[strlen($dest)-1] == '/') {
- $dest = $dest . basename($source);
- @mkdir($dest);
- @chmod($dest, 0755);
- } else {
- @mkdir($dest, 0755);
- @chmod($dest, 0755);
- }
- $dirHandle = opendir($source);
- while ($file = readdir($dirHandle)) {
- if ($file != "." && $file != "..") {
- if (!is_dir($source . "/" . $file)) {
- $__dest = $dest . "/" . $file;
- } else {
- $__dest = $dest . "/" . $file;
- }
- $result = copy_dir($source . "/" . $file, $__dest);
- }
- }
- closedir($dirHandle);
- } else {
- $result = false;
- }
- return $result;
- }
-
复制代码
|
Statement of this Website
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
Latest Articles by Author
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31