A solution that works: use <for> task from ant-contrib.
Maybe there's an other solution using only ant core tasks, but I don't
have the idea ;)
Sven Waibel wrote:
Hi,
i have several files i want to zip.
Situation:
d:\test\tt1.txt
d:\test\tt2.txt
d:\test\tt3.txt
d:\test\tt4.txt
d:\test\tt5.txt
d:\test\tt6.txt
I want to get the following:
d:\testing\tt1.zip
d:\testing\tt2.zip
d:\testing\tt3.zip
d:\testing\tt4.zip
d:\testing\tt5.zip
d:\testing\tt6.zip
In my build.xml i can specify one zip - filename only:
<zip destfile="${testing-folder}/tt1.zip">
<fileset dir="." includes="*.txt" />
</zip>
Thanks
Sven
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]