function Archive_Tar::_append
2 calls to Archive_Tar::_append()
- Archive_Tar::addModify in drupal-7.x/modules/system/system.tar.inc
- This method add the files / directories listed in $p_filelist at the
end of the existing archive. If the archive does not yet exists it
is created.
The $p_filelist parameter can be an array of string, each string
representing a filename or a directory…
- Archive_Tar::addModify in drupal-7.x/modules/system/system.tar.inc
- This method add the files / directories listed in $p_filelist at the
end of the existing archive. If the archive does not yet exists it
is created.
The $p_filelist parameter can be an array of string, each string
representing a filename or a directory…
Archivo
- drupal-7.x/modules/system/system.tar.inc, line 1774
Class
- Archive_Tar
- Creates a (compressed) Tar archive
*
Código
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;
}