A fileset in Apache Ant is a structure to combine a group of files and perform actions on them.
In Apache Ant, a FileSet
is a structure to group a number of files. Many Ant tasks work on filesets, e.g. copy
, delete
, ...
Usually build-scripts use filesets to select a number of files that should be used for operations later on.
Similar concepts in Ant are DirSet and PatternSet.
See the documentation for details