> Can anyone tell me how create a directory list such that each directory > contains a file with a given name? dirlist patterns test the name of the > directory. I want to test if the directory contains a file with a given > name. > > I can get the paths to the files with filelist, and then I could select > the dirnames. Do I have to iterate using foreach? How do I get the > result to be a list of directories to pass in to some other task (in > this case subant)?
Here's an example. --DD <!-- Gets all the directories with a Javadoc-generated index.html --> <dirset id="-docdirs" dir="${javadocs}"> <include name="*" /> <present targetdir="${javadocs}" present="both"> <mapper type="regexp" from="(.*)" to="\1/index.html" /> </present> </dirset> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]