ElvisUntot
Programmer
i have a few hundret zip files.
each with files that MAY! have the same name.
i neet to extract them in folders that are similair to the names of the .zip file.
unzips everything in the same folder ("temp") but not in a different folder there.
1.zip should go into /temp/1/
2.zip should go into /temp/2/
...
i am quite new to ant so please do not kill me becaue of this newbie question.
each with files that MAY! have the same name.
i neet to extract them in folders that are similair to the names of the .zip file.
Code:
<target name="extr">
<unzip dest="temp">
<fileset dir="source">
<include name="*"/>
</fileset>
</unzip>
</target>
unzips everything in the same folder ("temp") but not in a different folder there.
1.zip should go into /temp/1/
2.zip should go into /temp/2/
...
i am quite new to ant so please do not kill me becaue of this newbie question.