> -----Original Message-----
> From: Stefan Bodewig [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, November 26, 2008 11:26 AM
> To: user@ant.apache.org
> Subject: Re: Zip files: elegant way of remapping directories 
> while extracting?
> 
> On 2008-11-26, Brown, Carlton <[EMAIL PROTECTED]> wrote:
> 
> > Here is my fantasy code that would accomplish the <unzip> 
> as elegantly 
> > as the <zip> can be peformed in actuality:
> > <unzip src="web.zip">
> >     <zipfileset dir="en/html" includes="*" prefix="/root"/>
> >     <zipfileset dir="en/jsp" includes="*" prefix="/root"/>
> >     <zipfileset dir="static/pdf" includes="*" prefix="/root/pdf"/> 
> > </unzip>
> 
> wouldn't that be
> 
>   <copy todir="/root">
>     <zipfileset src="web.zip"/>
>     <chainedmapper>
>       <globmapper from="en/html/*" to="*"/>
>       <globmapper from="en/jsp/*" to="*"/>
>       <globmapper from="static/pdf/*" to="pdf/*"/>
>     </chainedmapper>
>   </copy>
> 
> the globmappers should ignore all files that don't match the 
> from patterns.

That's the problem, I don't wish to ignore all files that don't match
the 'from' patterns.  Whatever doesn't match the 'from' pattern should
be extracted normally.   This would be the reverse operation of the
zipfileset 'prefix' allowing certain directories to be remapped, while
leaving the others alone.

-----------------------------------------
====================================================
This message contains PRIVILEGED and CONFIDENTIAL
information that is intended only for use by the 
named recipient. If you are not the named recipient,
any disclosure, dissemination, or action based on 
the contents of this message is prohibited. In such
case please notify us and destroy and delete all 
copies of this transmission.  Thank you.
====================================================

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

Reply via email to