I would like to create a set of files for files matching a specific template, but exclude from this set any files that have another file in the same directory.
For example, I need a set of files that matches all files. /*/file.xml, for example:
<fileset dir="${some.dir}" includes="*/file.xml" />
... but I want to exclude any file.xml files that are in the same editor as the ignore.this file.
So, if the structure is dir:
foo/file.xml bar/file.xml bar/ignore.this
... file.xml in foo will be selected, but bar will not.
source share