Archive_Tar::add()

Archive_Tar::add() -- add files or directories

Synopsis

require_once 'Archive/Tar.php';

boolean add (mixed $filelist)

Description

This method adds files and directories to an existing archive. If the archive does not exist, it attempts to create it. The files and directories listed are added at the end of the archive, even if a file with the same name is already archived.

Parameter

Return value

boolean - Returns TRUE on success, FALSE on failure.

Throws

Table 30-1. Possible PEAR_Error values

Error codeError messageReasonSolution
NULL"Invalid file list"The argument for the function is not correct formatted or build. Check for typing mistakes in the argument

Note

This function can not be called statically.

Example