Closed ariporad closed 7 years ago
My best guess is that the file you're trying to add to the archive is being modified while yazl is attempting to read it. The specific error means that the fs.ReadStream that's reading the file produced a different number of bytes than the fs.stat() call predicted it would. (Either that or there's a serious bug in yazl.)
If I had to guess, I would say that you're writing files to the file system from some source and then immediately zipping them up into an archive. There's a really easy mistake to make with Node.js programming where you don't wait for a WriteStream to fully finish writing its data before you try to read the file. For example, if you wait for a stream earlier in the pipeline to end instead, then you'll get intermittent failures like the one you're getting.
That's all a really specific guess though. Your situation may be different. Can you verify that the files you're sending to addFile() are not changing while yazl is reading them?
Oh, that totally makes sense! Thanks!
Or it could be a zero byte file. At lease for me that was the case.
zero byte files should not cause this error. @rash805115 can you open an issue and describe the problem you're experiencing?
@thejoshwolfe I tested again. It turns out I also had the same issue of reading and writing from same location. I was reading before the write finished, hence thought it was a zero byte error. Thanks for your help. Let me know if I need to delete my first comment so that folks don't get confused.
that's a relief to hear.
(no need to delete any comments.)
Hi!
For some reason, I occasionally get the following error when trying to create a zip file. I'd be really grateful if you were able to provide any insight.
Thanks!