我目前正在使用以下代码来压缩当前文件夹:
<?php
$rootPath = realpath('./');
$zip = new ZipArchive();
$zip->open('archive.zip', ZipArchive::CREATE | ZipArchive::OVERWRITE);
$files = new RecursiveIteratorIterator(
new RecursiveDirectoryIterator($rootPath),
RecursiveIteratorIterator::LEAVES_ONLY
);
foreach ($files as $name => $file)
{
if (!$file->isDir())
{
$filePath = $file->getRealPath();
$relativePath = substr($filePath, strlen($rootPath) + 1);
$zip->addFile($filePath, $relativePath);
}
}
$zip->close();
?>
ZIP文件创建得很好 - 但是,我注意到由于某种原因它无法包含一个空文件夹,它是当前文件夹的子文件夹。所有其他文件/文件夹都会添加到存档中,但完全省略空文件夹。
有人会非常友好地指出为什么会发生这种情况吗?
这不是一个重复的主题 - 我需要知道为什么ZIP不会添加我正在压缩的主文件夹的任何空子文件夹。它们是空的,但我也需要它们。