On Sun, 29 Sep 2002, Sven K�hler <[EMAIL PROTECTED]> wrote: > according to the rules the pattern > test/asdf/** > matches the directory test/asdf itself, and all it's subdirectories.
Does it match asdf itself? > what i try to do is to exclude all subdirectories of test/ but not > to exclude the files within test/ In most cases (<fileset> for example), Ant will only work with the matched files and not the directories, so test/* will match the directories as well as the files, but Ant will ignore the directories. For the other issue. Can you put together a simple testcase to plug into Ant's DirectoryScannerTest JUnit test so we can (1) verify the bug and (2) fix it. Stefan -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
