Execute ant task over sons of parent folder
I was trying to execute a task over a fileset defined using something like
this:
<target name="copyToTarget">
<copy todir="${target.folder}/" >
<fileset dir="../**/folder" />
</copy>
</target>
Is there anyway to achieve this?
No comments:
Post a Comment