Josh Wolfe
Josh Wolfe
thanks again for the contribution. And sorry, but it's going to take me some time to get around to this.
I suspect the problem is your use of the `.on('data'` event. Try using `.pipe()` instead.
Does this change the API?
Thanks for the contribution! I need to do more research into the way existing zipfile readers and writers handle symlinks before i want to commit to supporting a method like...
Editing existing zipfiles is a hard problem. Implementations are faced with lots of trafe offs that I've been trying to avoid. appending a file is fairly simple, but what about...
this has been requested before in #26. this is possible to do pretty well, but it is a little bit complex to implement. I'll put it on my todo list.
Corrupt zipfile bugs usually happen when you don't wait for the operation to finish before trying to read it. I don't know if that's what's happening here; I don't see...
It does appear that the file is prematurely truncated. There's no Central Directory, which is supposed to come at the end of the file. I'm not sure what 7-Zip is...
I am unable to reproduce your issue. Try running the example program `examples/zip.js` (try `--help` for command line usage). If that doesn't work, then something on your system is misconfigured....