ディレクトリは次のようなものです:
home/
file1.html
file2.html
Another_Dir/
file8.html
Sub_Dir/
file19.html
PHPMyAdmin http://trac.seagullproject.org/browser/branches/0.6-bugfix/lib/other/Zip.phpで使用されているものと同じPHP Zipクラスを使用しています。ファイルではなくディレクトリを圧縮する方法がわかりません。ここに私がこれまで持っているものがあります:
$aFiles = $this->da->getDirTree($target);
/* $aFiles is something like, path => filetime
Array
(
[home] =>
[home/file1.html] => 1251280379
[home/file2.html] => 1251280377
etc...
)
*/
$zip = & new Zip();
foreach( $aFiles as $fileLocation => $time ){
$file = $target . "/" . $fileLocation;
if ( is_file($file) ){
$buffer = file_get_contents($file);
$zip->addFile($buffer, $fileLocation);
}
}
THEN_SOME_PHP_CLASS::toDownloadData($zip); // this bit works ok
しかし、ダウンロードした対応するzipファイルを解凍しようとすると、「操作は許可されていません」というメッセージが表示されます
このエラーは、Macで解凍しようとしたときにのみ発生します。コマンドラインでファイルを解凍すると、ファイルが正常に解凍されます。ダウンロード時に特定のコンテンツタイプを送信する必要がありますか。現在は「application / zip」です。