We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Append doesn't work entirely, doesn't matter what you include. It even doesn't work for strings. Minimal example:
cost archive = require('archiver')("zip") archive.append("hello", { name: "test.txt" }) archive.finalize() archive.pipe(require('fs').createWriteStream('example.zip'));
This produces a zip with CRC error.
I'm using Node 16 on Windows.
The text was updated successfully, but these errors were encountered:
I'm also running into issues with Windows. Getting duplicate files in the zipped archive. On Mac, it works fine... not sure of the cause yet.
Sorry, something went wrong.
it's likely order of operation issue, to get data flowing/streaming you need to pipe to file first before appending
No branches or pull requests
Append doesn't work entirely, doesn't matter what you include. It even doesn't work for strings. Minimal example:
This produces a zip with CRC error.
I'm using Node 16 on Windows.
The text was updated successfully, but these errors were encountered: