![]() |
How to read a zip file and add it to another zip - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: How to read a zip file and add it to another zip (/showthread.php?tid=57717) |
How to read a zip file and add it to another zip - El Forum - 04-05-2013 [eluser]Unknown[/eluser] I'm trying to add a zip file to another zip file with other stuff. For example: a picture , a document , a folder and a zip must all be added to a zip. I was able to do all that using ZIP Class in CodeIgniter but still couldn't figure out how to add Zip to a Zip file. Thanks in advance How to read a zip file and add it to another zip - El Forum - 04-05-2013 [eluser]TheFuzzy0ne[/eluser] Welcome to the CodeIgniter forums! The user guide explains how to add files to a zip, and how to save the zip file to the hard drive is also documented. So you need to write the first zip to the hard drive, and then add it to the next. You just need to remember to call $this->zip->clear_data() before you generate the second zip. How to read a zip file and add it to another zip - El Forum - 04-05-2013 [eluser]Unknown[/eluser] Thanks for the greetings. I have the zip already on the hard, but couldn't figure out how to add it. I was trying read_dir but now I tried read_file and it worked.. Thanks |