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

[eluser]leighmarble[/eluser]
[quote author="TheFuzzy0ne" date="1236153265"]I have one final suggestion for now. That is to CD into the directory you want to zip.
Code:
chdir('files/mydirectory/');
$this->zip->read_dir('.');
$this->zip->download('mydirectory.zip');
[/quote]

OK, now we're on to something!

The above code produced a PHP error for every file and subdirectory in "mydirectory", saying:
Message: file_get_contents(.index.html) [function.file-get-contents]: failed to open stream: No such file or directory
and
Message: file_get_contents(.images) [function.file-get-contents]: failed to open stream: No such file or directory

Note the prefixing of the "." before each file and directory name. Somewhere along the line, the period is being treated as a literal character, rather than as the web server's special designation for "this directory". (Perhaps that's the root of the problem with the Zip class as well?)

In any case, here's the code that finally worked:

Code:
chdir(getcwd() .'/files/');
$this->zip->read_dir('mydirectory/');

In other words, switch the current working directory to the parent directory of the dir you want to zip. Then, feed read_dir just the name of your target dir (with the trailing slash). Boom, it works.

Cheers, and thanks for helping with the brainstorm,
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