我正在使用归档器将目录导出为 nodejs/node-webkit 中的 zip 文件。
var file_system = require("fs")
var archiver = require("archiver")
var output = file_system.createWriteStream("files.zip")
var archive = archiver("zip")
output.on("close", function() {
console.log(archive.pointer() + " total bytes")
console.log("archiver has been finalized and the output file descriptor has closed.")
})
archive.on("error", function(err) {
throw err
})
archive.pipe(output)
archive.bulk([
{ expand: true, cwd: "./content/project/", src: ["**"], dest: "./content/project/"}
])
archive.finalize()
但是,我找不到任何关于如何让用户使用传统的 SaveFileDialog 设置应该导出 zip 文件的目标的任何信息。
有谁知道我如何让用户使用 node-webkit 中的 SaveFileDialog 设置导出 zip 文件的目的地?