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:
committed by
GitHub
parent
1501835f61
commit
e8fc6d546a
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user