public function Archive_Tar::_append

public Archive_Tar::_append($p_filelist, $p_add_dir = '', $p_remove_dir = '')

Parameters

$p_filelist:

string $p_add_dir:

string $p_remove_dir:

Return value

bool

File

modules/system/system.tar.inc, line 2341

Class

Archive_Tar

Code

public function _append($p_filelist, $p_add_dir = '', $p_remove_dir = '') 
 {
  if (!$this->_openAppend()) {
    return false;
  }

  if ($this->_addList($p_filelist, $p_add_dir, $p_remove_dir)) {
    $this->_writeFooter();
  }

  $this->_close();

  return true;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!system!system.tar.inc/function/Archive_Tar::_append/7.x