You are here

function Archive_Tar::_cleanFile in Acquia Connector 6.2

1 call to Archive_Tar::_cleanFile()
Archive_Tar::createModify in acquia_agent/archive_tar.inc
This method creates the archive file and add the files / directories that are listed in $p_filelist. If the file already exists and is writable, it is replaced by the new tar. It is a create and not an add. If the file exists and is read-only or is a…

File

acquia_agent/archive_tar.inc, line 789

Class

Archive_Tar
Creates a (compressed) Tar archive

Code

function _cleanFile() {
  $this
    ->_close();

  // ----- Look for a local copy
  if ($this->_temp_tarname != '') {

    // ----- Remove the local copy but not the remote tarname
    @unlink($this->_temp_tarname);
    $this->_temp_tarname = '';
  }
  else {

    // ----- Remove the local tarname file
    @unlink($this->_tarname);
  }
  $this->_tarname = '';
  return true;
}