Close
jGuru Forums
Expand All | Collapse All
Troubles with dirset... dummy523Wed Feb 06, 2013 06:58 AM
Hello guys, I;m pretty new with ANT, so I hope u can help me. Lets suppose, that I have a folder
A: -example.a -example.b -example.c -test1 -test2
So, basically I want to get the list of folders, which starts with example.* and do some work with them...
I have this, but it does not work, the echo output is still empty <dirset id = "aa" dir = "A" includes = "example.*" /> <property name = "bb" refid = "aa" /> <echo> ${bb} </echo>
<dirset id = "aa" dir = "A" includes = "example.*" /> <property name = "bb" refid = "aa" /> <echo> ${bb} </echo>
Do you have any ideas, what I;m doing wrong? Thank you in advance.
Report | Quote This | Reply | Print