1
0
mirror of https://github.com/prasathmani/tinyfilemanager.git synced 2025-07-28 12:31:10 +02:00

fix "Archive not created" error (#317)

fix "Archive not created" error while trying to create Tar archive
This commit is contained in:
Maxim Khokhryakov
2020-03-12 12:18:19 +05:00
committed by GitHub
parent 1501835f61
commit e8fc6d546a

View File

@@ -2977,7 +2977,12 @@ class FM_Zipper_Tar
private function addFileOrDir($filename)
{
if (is_file($filename)) {
return $this->tar->addFile($filename);
try {
$this->tar->addFile($filename);
return true;
} catch (Exception $e) {
return false;
}
} elseif (is_dir($filename)) {
return $this->addDir($filename);
}