I have tried to rename folders inside the zip file using ZipArchive::renameIndex() and ZipArchive::renameName(). Neither was successful. I believe that this is not a bug and wanted to document it.
(PHP 5 >= 5.2.0, PHP 7, PHP 8, PECL zip >= 1.5.0)
ZipArchive::renameIndex — Benennt einen durch seinen Index bestimmten Eintrag um
Benennt einen durch seinen Index bestimmten Eintrag um.
index
Index des umzubenennenden Eintrags.
new-name
Neuer Name.
Beispiel #1 Einen Eintrag umbenennen
<?php
$zip = new ZipArchive;
$res = $zip->open('test.zip');
if ($res === TRUE) {
$zip->renameIndex(2,'neuer_name.txt');
$zip->close();
} else {
echo 'Fehler, Code:' . $res;
}
?>
I have tried to rename folders inside the zip file using ZipArchive::renameIndex() and ZipArchive::renameName(). Neither was successful. I believe that this is not a bug and wanted to document it.
To rename a folder, you must replace the folder name in the path of every file that it contains.