2

我需要使用从 Storage AWS 收到的任何 PDF 创建一个 zip 文件,我正在尝试使用 NodeJS 中的 ADM-zip 执行此操作,但我无法读取最终的 file.zip。这是代码。

        var zip = new AdmZip();

                            // add file directly
                            var content = data.Body.buffer;
                            zip.addFile("test.pdf", content, "entry comment goes here");
                            // console.log(content)
                            // add local file
                            zip.addLocalFile(`./tmp/boletos/doc.pdf`);
                            // // get everything as a buffer
                            var willSendthis = zip.toBuffer();
                            console.log(willSendthis)
                            // // or write everything to disk
                            zip.writeZip("test.zip", `../../../tmp/boletos/${datastring}.zip`);

因为这只会为每个文件创建一个 .zip ..zip

4

0 回答 0