-
test*.xml
will includetest_42.xml
, but it will not includetest/some.xml
. -
test**.xml
fits totest_42.xml
as well as totest/bla.xml
, for example. -
**/*.ent.xml
fits to all files that end withent.xml
in all subdirectories of the directory specified with thedir
attribute of the<fileset>
tag. However, it will not include any files that are directly in the base directory of the file set.