zanysoft / laravel-zip

MIT License
300 stars 96 forks source link

Add file to existing .zip file #31

Closed Stantastic closed 2 years ago

Stantastic commented 2 years ago

I can't really see an option to add files to an existing .zip file. Is it possible?

zanysoft commented 2 years ago

$zip = Zip::open('file.zip'); $zip->add('/path/to/my/file'); $zip->close();