AW: AW: AW: Unzip specific folders in ANT

2009-01-27 Thread Jan.Materne
>I tried the wildcard from your example: > > >This worked as i expected. >Thanks a lot Jan I added these two examples to the manual. Jan - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mai

Re: AW: AW: Unzip specific folders in ANT

2009-01-27 Thread Sunils_82
Hi Jan, I tried the wildcard from your example: This worked as i expected. Thanks a lot Jan Regards, Sunil -- View this message in context: http://www.nabble.com/Unzip-specific-folders-in-ANT-tp21685421p21701022.html Sent from the Ant - Users mailing list archive at Nabble.com. --

AW: AW: Unzip specific folders in ANT

2009-01-27 Thread Jan.Materne
>I tried with the wildcard that you provided and checked with >verbose option. >Extracting of files doesn't seem to happen for specified folder names. This works for me: Jan -

Re: AW: Unzip specific folders in ANT

2009-01-27 Thread Sunils_82
Hi Mark, I tried with the wildcard that you provided and checked with verbose option. Extracting of files doesn't seem to happen for specified folder names. Regards, Sunil -- View this message in context: http://www.nabble.com/Unzip-specific-folders-in-ANT-tp21685421p21699788.html Sent from th

Re: AW: Unzip specific folders in ANT

2009-01-27 Thread Mark Salter
Sunils_82 wrote: > Yes i tried specifying the wildcard using the folder name as mentioned below > > > > But this didn't extract the contents under the ./resource/images folder. > > Should \ vs / matter? It seems to for me... Can you try :- please? Perhaps include the output from "ant

Re: AW: Unzip specific folders in ANT

2009-01-27 Thread Sunils_82
Yes i tried specifying the wildcard using the folder name as mentioned below But this didn't extract the contents under the ./resource/images folder. -- View this message in context: http://www.nabble.com/Unzip-specific-folders-in-ANT-tp21685421p21686278.html Sent from the Ant - Users mail

Re: AW: Unzip specific folders in ANT

2009-01-27 Thread Andy Stevens
2009/1/27 Sunils_82 : > I'm using the sample specified in the ANT > > > > > ... > But this extracts contents from all the folders present in the zip file. Take a guess at what the "**" wildcard means... > Wanted to know how to specify the folder name from

Re: AW: Unzip specific folders in ANT

2009-01-27 Thread Mark Salter
Sunils_82 wrote: > I'm using the sample specified in the ANT > > > > > > > > > But this extracts contents from all the folders present in the zip file. All files with the extension of .gif and .GIF from all of the folders? > > W

Re: AW: Unzip specific folders in ANT

2009-01-27 Thread Sunils_82
I'm using the sample specified in the ANT But this extracts contents from all the folders present in the zip file. Wanted to know how to specify the folder name from which these gif files are to be extracted. Thanks, S

AW: Unzip specific folders in ANT

2009-01-27 Thread Jan.Materne
>I have a zip file with multiple folders in it. >Instead of extracting the whole contents present in ZIP-File, >is it possible >to extract only the specific folders that is required for me? Have a look at the examples of . Jan ---