Welcome Guest, Not a member yet? Register   Sign In
ZIP a specific directory.
#3

[eluser]leighmarble[/eluser]
I hacked at a solution for this today, but ended up with a new problem...

This code requires PHP 5. Save it as MY_Zip.php, into application/libraries:


Code:
class MY_Zip extends CI_Zip {

    function My_Zip()
    {
        parent::CI_Zip();
    }


    function read_dir($path)
    {
        $objects = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path), RecursiveIteratorIterator::SELF_FIRST);
        foreach($objects as $name => $object)
        {

            //echo $objects->getDepth() .": $name<br />";  // uncomment for troubleshooting

            if (FALSE !== ($data = file_get_contents($name)) && $objects->getDepth() >=0 )  // prevent moving up to parent directories
            {
                $this->add_data($name, $data);
            }
        }

        return TRUE;
    }
}


When I uncomment the "echo" line above, the readout looks good.

Then, I enable the $this->zip->download in my controller, and give the download a try... a ZIP file shows up, but upon unzipping, it has this extension:

.zip.cpgz

This file, in turn, "unzips" to a zip, and back and forth and so on.

Any ideas?

thanks,
Leigh


Messages In This Thread
ZIP a specific directory. - by El Forum - 11-21-2008, 02:08 PM
ZIP a specific directory. - by El Forum - 02-24-2009, 07:50 PM
ZIP a specific directory. - by El Forum - 02-24-2009, 11:05 PM
ZIP a specific directory. - by El Forum - 03-03-2009, 02:27 PM
ZIP a specific directory. - by El Forum - 03-03-2009, 03:46 PM
ZIP a specific directory. - by El Forum - 03-03-2009, 04:00 PM
ZIP a specific directory. - by El Forum - 03-03-2009, 04:07 PM
ZIP a specific directory. - by El Forum - 03-03-2009, 04:25 PM
ZIP a specific directory. - by El Forum - 03-03-2009, 05:39 PM
ZIP a specific directory. - by El Forum - 03-03-2009, 06:00 PM
ZIP a specific directory. - by El Forum - 03-03-2009, 06:32 PM
ZIP a specific directory. - by El Forum - 03-03-2009, 06:43 PM
ZIP a specific directory. - by El Forum - 03-03-2009, 06:51 PM
ZIP a specific directory. - by El Forum - 03-03-2009, 07:21 PM
ZIP a specific directory. - by El Forum - 03-03-2009, 07:44 PM
ZIP a specific directory. - by El Forum - 03-03-2009, 07:54 PM
ZIP a specific directory. - by El Forum - 03-04-2009, 12:28 PM
ZIP a specific directory. - by El Forum - 03-04-2009, 01:00 PM
ZIP a specific directory. - by El Forum - 03-04-2009, 03:23 PM
ZIP a specific directory. - by El Forum - 03-04-2009, 03:30 PM
ZIP a specific directory. - by El Forum - 03-04-2009, 03:36 PM



Theme © iAndrew 2016 - Forum software by © MyBB