Using wildcards

  • test*.xml will include test_42.xml, but it will not include test/some.xml.

  • test**.xml fits to test_42.xml as well as to test/bla.xml, for example.

  • **/*.ent.xml fits to all files that end with ent.xml in all subdirectories of the directory specified with the dir attribute of the <fileset> tag. However, it will not include any files that are directly in the base directory of the file set.