getArchivePath()); } return $exists; } /** * * @staticvar bool $arcSize * @return bool */ public static function archiveSize() { static $arcSize = null; if (is_null($arcSize)) { $archivePath = DUPX_Security::getInstance()->getArchivePath(); $arcSize = file_exists($archivePath) ? (int) @filesize($archivePath) : 0; } return $arcSize; } }