public class Sync extends Task
Uses a <copy> task internally, but forbidding the use of mappers and filter chains. Files of the destination directory not present in any of the source fileset are removed.
| Modifier and Type | Class and Description | 
|---|---|
| static class  | Sync.MyCopySubclass Copy in order to access it's file/dir maps. | 
| static class  | Sync.SyncTargetInner class used to hold exclude patterns and selectors to save
 stuff that happens to live in the target directory but should
 not get removed. | 
| Constructor and Description | 
|---|
| Sync() | 
| Modifier and Type | Method and Description | 
|---|---|
| void | add(ResourceCollection rc)Adds a collection of filesystem resources to copy. | 
| void | addFileset(FileSet set)Adds a set of files to copy. | 
| void | addPreserveInTarget(Sync.SyncTarget s)A container for patterns and selectors that can be used to
 specify files that should be kept in the target even if they
 are not present in any source directory. | 
| void | execute()Execute the sync task. | 
| void | init()Initialize the sync task. | 
| void | setFailOnError(boolean failonerror)If false, note errors to the output but keep going. | 
| void | setGranularity(long granularity)The number of milliseconds leeway to give before deciding a
 target is out of date. | 
| void | setIncludeEmptyDirs(boolean includeEmpty)Used to copy empty directories. | 
| void | setOverwrite(boolean overwrite)Overwrite any existing destination file(s). | 
| void | setTodir(File destDir)Sets the destination directory. | 
| void | setVerbose(boolean verbose)Used to force listing of all names of copied files. | 
bindToOwner, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, isInvalid, log, log, log, log, maybeConfigure, perform, reconfigure, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskTypeclone, getDescription, getLocation, getProject, setDescription, setLocation, setProjectpublic void add(ResourceCollection rc)
rc - a resource collectionpublic void addFileset(FileSet set)
set - a filesetpublic void addPreserveInTarget(Sync.SyncTarget s)
You must not invoke this method more than once.
s - a preserveintarget nested elementpublic void execute()
             throws BuildException
execute in class TaskBuildException - if there is an error.Task.execute()public void init()
          throws BuildException
init in class TaskBuildException - if there is a problem.Task.init()public void setFailOnError(boolean failonerror)
failonerror - true or falsepublic void setGranularity(long granularity)
Default is 0 milliseconds, or 2 seconds on DOS systems.
granularity - a long valuepublic void setIncludeEmptyDirs(boolean includeEmpty)
includeEmpty - If true copy empty directories.public void setOverwrite(boolean overwrite)
overwrite - if true overwrite any existing destination file(s).public void setTodir(File destDir)
destDir - the destination directorypublic void setVerbose(boolean verbose)
verbose - if true force listing of all names of copied files.