I have a folder with some .zip files, and each of it has the same file names. It is possible to unzip them all with apache ant, edit some particular file and to zip it back? Tried to unzip like this
<unzip dest = "temp">
<fileset dir="${basedir}/libs">
<include name="*.prpt" />
</fileset>
</unzip>
The problem is that i can't reference a file from fileset, additional it overrides each other.