I have a folder structure as follows
+ [BASE]
+++ [DIR 1]
++++++ File.zip
+++ [DIR 2]
++++++ File.zip
....
I have a build.xml in BASE. I need to have a task where I can unzip the File.zip
in each DIR*
. I needed it to be such that a new DIR added also should be handled.
I tried the following, in order to get the dir names but don't know how to proceed further
<dirset id="contents" dir="." />
<property name="prop.contents" refid="contents"/>