我正在使用此代码来递归复制目录(和文件)。我无法理解为什么但是,在复制之后,我的$ source文件夹增加了...它有76.3MB,复制后它会增加到123 MB!任何想法?
<?php
class MyDirectory {
public function copy($source, $destination, $directoryPermission = 0755, $filePermission = 0644) {
$source = $this->addSlash($source);
$destination = $this->addSlash($destination);
$directoryIterator = new DirectoryIterator($source);
if (!file_exists($destination)) {
mkdir($destination, $directoryPermission);
}
foreach ($directoryIterator as $fileInfo) {
$filePath = $fileInfo->getPathname();
$newDestination = str_replace($source, $destination, $filePath);
if (!$fileInfo->isDot()) {
if ($fileInfo->isFile()) {
copy($filePath, $newDestination);
chmod($newDestination, $filePermission);
} else if ($fileInfo->isDir()) {
mkdir($newDestination, $directoryPermission);
$this->copy($filePath, $newDestination);
}
}
}
}
private function addSlash($directory) {
if (!empty($directory)) {
if (!preg_match('/\/$/', $directory)) {
$directory .= '/';
}
return $directory;
}
}
}
更新:增加源尺寸没有显着差异!
$ diff -rq mag/ copy-mag/
Only in mag//app/etc: local.xml
谢谢。
答案 0 :(得分:0)
从源代码中推断出什么问题是非常困难的。
分析目录,比较差异,并用结果更新问题。您可以使用Beyond Compare之类的工具(商业但30天试用版)来找出问题所在。