public function Archive_Tar::add

public Archive_Tar::add($p_filelist)

This method add the files / directories that are listed in $p_filelist in the archive. If the archive does not exist it is created. The method return false and a PEAR error text. The files and directories listed are only added at the end of the archive, even if a file with the same name is already archived. See also createModify() method for more details.

@access public

Parameters

array $p_filelist An array of filenames and directory names, or a: single string with names separated by a single blank space.

Return value

true on success, false on error.

See also

createModify()

File

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

Class

Archive_Tar

Code

public function add($p_filelist) 
 {
  return $this->addModify($p_filelist, '', '');
}

© 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::add/7.x