I have file at my local machine at "C:\temp\readme.txt".
I have zip file "test.zip" inside which there is folder structure "/com/test/".
How to add the file at local machine ("C:\temp\readme.txt") into zip file at folder "/com/test/" using perl?
I have file at my local machine at "C:\temp\readme.txt".
I have zip file "test.zip" inside which there is folder structure "/com/test/".
How to add the file at local machine ("C:\temp\readme.txt") into zip file at folder "/com/test/" using perl?
Take a look at the Archive::Zip module. It has an addfile() method.