`
const StreamZip = require("node-stream-zip");
async function test() {
const zip = new StreamZip.async({
file: "C:\Users\Administrator\AppData\Roaming\xxxx\mods\443.zip",
});
try {
await zip.extract(null, "G:\Monster Hunter");
} catch (error) {
console.log(error);
}
console.log("-----");
}
test()
`