What's the difference between a nested path and fileset?
I have been googling for the "Differences between fileset and path" article for some time, but have found nothing useful. For example, what is the difference between the following (say, there is a someDir directory, which contains .jar files and has no subdirectories): <path id="somePathId"> <pathelement path="someDir"/> </path> <path id="someId"> <path refid="somePathId" /> </path> and <path id="someId"> <fileset dir="someDir"> <include name="*.*"> </fileset> </path> ? Thresh They are used in different situations. fileset is used to specify a group of files. You can use selector s and