I want to copy the files from the zip folder to another folder.
I am doing this , but it doesn’t works
<copy todir="Lib">
<fileset basedir="Output/RCxSL.Client.zip/ServiceClientDlls">
<include name="*.dll" />
</fileset>
</copy>
How to achieve this ? the folder is zipped.
A ZIP folder is not a folder, it is a ZIP file, even though the operating system (through your files explorer) may make it look like a folder. Instead of using
<fileset>and<copy>, use the unzip task of NAnt.