I have to write a build script which will copy a folder(XYZ) lying parallel
to another folder say ABC but ABC itself should be ignored.
This ABC folder is lying inside someother folder.

i tried this

<fileset dir="${dest}">
<include name="**/ABC/.." />
<exclude name="**/ABC" />
</fileset>

i only have to pick up the folder lying parallel to ABC and nothing else..
i have tried other combinations but at most what i can get is to get ABC
folder ignored but the directory structure gets replicated in the target
directory ie    <targetdir>l/m/XYZ
what i want is          <targetdir>/XYZ

Any suggestions!!

tar,
Sujan



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to