Cari di Apache Ant 
    Apache Ant User Manual
Daftar Isi
(Sebelumnya) Set of Extension PackagesFileSet (Berikutnya)
Concepts and Types - Types

FileList

FileList

FileLists are explicitly named lists of files. Whereas FileSetsact as filters, returning only those files that exist in the filesystem and match specified patterns, FileLists are useful forspecifying files that may or may not exist. Multiple files arespecified as a list of files, relative to the specified directory,with no support for wildcard expansion (filenames with wildcards will beincluded in the list unchanged).FileLists can appear inside tasks that support this feature or as stand-alonetypes.

Attribute Description Required
dir The base directory of this FileList. Yes
files The list of file names. This is a list of file name separated by whitespace, or by commas. Yes, unless there is a nested file element

Nested Element: file

This represents a file name. The nested element allows filenames containing white space and commas.

Since Apache Ant 1.6.2

Attribute Description Required
name The name of the file. Yes

Examples

<filelist id="docfiles" dir="${doc.src}" files="foo.xml,bar.xml"/> 

The files ${doc.src}/foo.xml and${doc.src}/bar.xml. Note that these files may not (yet)actually exist.

<filelist id="docfiles" dir="${doc.src}" files="foo.xml   bar.xml"/> 

Same files as the example above.

<filelist refid="docfiles"/> 

Same files as the example above.

<filelist id="docfiles" dir="${doc.src}"> <file name="foo.xml"/> <file name="bar.xml"/></filelist>

Same files as the example above.

(Sebelumnya) Set of Extension PackagesFileSet (Berikutnya)