how to copy zip file from one location to other?

Can anyone suggest me how to copy a archived zip file of a package from one directory to other using developer. If possible pease suggest what invoke steps to be included for this…

thanks,
Sab.

Write a Java service for copying the zip file from one directory to another. There are plenty of examples on internet which can help you do it.

Other alternative is to use the Apache Commons jar and use FileUtils API.

[URL]http://commons.apache.org/io/api-release/org/apache/commons/io/FileUtils.html#copyFile(java.io.File,%20java.io.File)[/URL]

Cheers,
Akshith