Lines Matching defs:zipname

167     public $zipname = '';
191 //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, 'PclZip::PclZip', "zipname=$p_zipname");
200 $this->zipname = $p_zipname;
1070 if (@is_file($this->zipname)) {
1073 if (($this->zip_fd = @fopen($this->zipname, 'rb')) == 0) {
1077 PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open archive \'' . $this->zipname . '\' in binary read mode');
1132 //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "The parameter is valid PclZip object '".$p_archive->zipname."'");
1134 $v_result = $this->privDuplicate($p_archive->zipname);
1302 if (!is_file($this->zipname)) {
1304 PclZip::privErrorLog(PCLZIP_ERR_MISSING_FILE, "Missing archive file '" . $this->zipname . "'");
1310 if (!is_readable($this->zipname)) {
1312 PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, "Unable to read archive '" . $this->zipname . "'");
2003 if ((!is_file($this->zipname)) || (filesize($this->zipname) == 0)) {
2167 @unlink($this->zipname);
2171 //@rename($v_zip_temp_name, $this->zipname);
2172 PclZipUtilRename($v_zip_temp_name, $this->zipname);
2193 PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Zip file \'' . $this->zipname . '\' already open');
2202 if (($this->zip_fd = @fopen($this->zipname, $p_mode)) == 0) {
2204 PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open archive \'' . $this->zipname . '\' in ' . $p_mode . ' mode');
2892 if (($this->zip_fd = @fopen($this->zipname, 'rb')) == 0) {
2897 PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open archive \'' . $this->zipname . '\' in binary read mode');
4260 $v_size = filesize($this->zipname);
4266 PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'Unable to go to the end of the archive \'' . $this->zipname . '\'');
4282 PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'Unable to seek back to the middle of the archive \'' . $this->zipname . '\'');
4313 PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'Unable to seek back to the middle of the archive \'' . $this->zipname . '\'');
4733 @unlink($this->zipname);
4736 //@rename($v_zip_temp_name, $this->zipname);
4737 PclZipUtilRename($v_zip_temp_name, $this->zipname);
4829 //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privMerge", "archive='".$p_archive_to_add->zipname."'");
4833 if (!is_file($p_archive_to_add->zipname)) {
4845 if (!is_file($this->zipname)) {
4849 $v_result = $this->privDuplicate($p_archive_to_add->zipname);
5005 @unlink($this->zipname);
5009 //@rename($v_zip_temp_name, $this->zipname);
5010 PclZipUtilRename($v_zip_temp_name, $this->zipname);