org.apache.tools.ant.taskdefs
public class Tar extends MatchingTask
Since: Ant 1.1
UNKNOWN: category="packaging"
Nested Class Summary | |
---|---|
static class | Tar.TarCompressionMethod
Valid Modes for Compression attribute to Tar Task
|
static class | Tar.TarFileSet
This is a FileSet with the option to specify permissions
and other attributes. |
static class | Tar.TarLongFileMode
Set of options for long file handling in the task.
|
Field Summary | |
---|---|
static String | FAIL |
static String | GNU |
static String | OMIT |
static String | TRUNCATE |
static String | WARN |
Method Summary | |
---|---|
protected boolean | archiveIsUpToDate(String[] files)
Is the archive up to date in relationship to a list of files. |
protected boolean | archiveIsUpToDate(String[] files, File dir)
Is the archive up to date in relationship to a list of files. |
Tar.TarFileSet | createTarFileSet()
Add a new fileset with the option to specify permissions |
void | execute()
do the business |
void | setBasedir(File baseDir)
This is the base directory to look in for things to tar. |
void | setCompression(Tar.TarCompressionMethod mode)
Set compression method.
|
void | setDestFile(File destFile)
Set is the name/location of where to create the tar file. |
void | setLongfile(String mode)
Set how to handle long files, those with a path>100 chars.
|
void | setLongfile(Tar.TarLongFileMode mode)
Set how to handle long files, those with a path>100 chars.
|
void | setTarfile(File tarFile)
Set is the name/location of where to create the tar file. |
protected void | tarFile(File file, TarOutputStream tOut, String vPath, Tar.TarFileSet tarFileSet)
tar a file |
Deprecated: Tar.FAIL is deprecated and is replaced with Tar.TarLongFileMode.FAIL
Deprecated: Tar.GNU is deprecated and is replaced with Tar.TarLongFileMode.GNU
Deprecated: Tar.OMIT is deprecated and is replaced with Tar.TarLongFileMode.OMIT
Deprecated: Tar.TRUNCATE is deprecated and is replaced with Tar.TarLongFileMode.TRUNCATE
Deprecated: Tar.WARN is deprecated and is replaced with Tar.TarLongFileMode.WARN
Deprecated: use the two-arg version instead.
Is the archive up to date in relationship to a list of files.Parameters: files the files to check
Returns: true if the archive is up to date.
Parameters: files the files to check dir the base directory for the files.
Returns: true if the archive is up to date.
Since: Ant 1.5.2
Returns: the tar fileset to be used as the nested element.
Throws: BuildException on error
Parameters: baseDir the base directory.
Parameters: mode the compression method.
Parameters: destFile The output of the tar
Since: Ant 1.5
Deprecated: setLongFile(String) is deprecated and is replaced with setLongFile(Tar.TarLongFileMode) to make Ant's Introspection mechanism do the work and also to encapsulate operations on the mode in its own class.
Set how to handle long files, those with a path>100 chars. Optional, default=warn.Allowable values are
Parameters: mode the mode string to handle long files.
Allowable values are
Parameters: mode the mode to handle long file names.
Deprecated: for consistency with other tasks, please use setDestFile()
Set is the name/location of where to create the tar file.Parameters: tarFile the location of the tar file.
Parameters: file the file to tar tOut the output stream vPath the path name of the file to tar tarFileSet the fileset that the file came from.
Throws: IOException on error