Zipper
Zipper copied to clipboard
This is a simple Wrapper around the ZipArchive methods with some handy functions
Hi, i'm Laravel developer on linux. I try to create a backup of my server, but Zipper don' include hidden files (.files) How can i do? I use this test...
Hello, I have noticed that directories are not created on my archive. The files does contain the path in their name, so in the most cases operating software can manage...
Hello, I'm getting the following error: Call to a member function each() on a non-object At line 405 (/vendor/chumper/zipper/src/Chumper/Zipper/Zipper.php) I'm on PHP 5.3.3. EDIT: The problem is that on PHP...
this is my code : $zip=new Zipper(); $zip->make('http://localhost:8000/books/20/20.zip')->folder('http://localhost:8000/books/')->extractTo('20'); and returned this error: The path "http://localhost:8000/books/20/20.zip" is not writeable
composer and github have different files for example: github - Zipper.php ``` public function add($pathToAdd, $fileName = null) { if (is_array($pathToAdd)) { foreach ($pathToAdd as $dir) { $this->add($dir); } }...
Chumper, This library works awesome, thank you so much for building it! I noticed "listFiles()" wasn't in your main documentation on the front, so I wanted to let you know...
In the extractTo function there's a check if the directory exists and will create it if it does not. However, prior to that it calls realpath, which returns false if...
Cannot create the next structure -zip -folder -subfolder -file -subfolder -file -file The code is here: $zip = storage_path() . '/app/downloads/' . $theme[ 'slug' ] . '.zip'; ``` $zipper->make( $zip...
Would it be possible to add a password to the generated zip file?
$zipper->make($request->file('zipfile'))->extractTo($directoryPath.$detailFolder); This is the content of my ZIP:  And this is what actually gets extracted:  All the folders have files in them. Why might this be happening?