2

アーカイバーを使用してzipファイルを作成しています。以下はそれを行うための私のコードです。パスワードで保護する必要があります。どうすればいいですか?

var head={'Content-Type':'application/octet-stream','Content-disposition':'attachment; filename='+zipName,'Transfer-Encoding':'chunked' }

res.writeHead(200,head);

var archive = archiver('zip');

archive.pipe(res);

archive.append(result, { name: attachment.aliasFileName });

archive.finalize();

return res.send("thanks");
4

1 に答える 1

1

Linuxで作業している場合、次のようなことができます

 //create a zip 
    spawn = require('child_process').spawn;
    zip = spawn('zip',['-P', 'password' , 'archive.zip', 'complete path to archive file']);
    zip .on('exit', function(code) {
    ...// Do something with zipfile archive.zip
    ...// which will be in same location as file/folder given
    });

https://nodejs.org/api/child_process.html を参照

于 2016-04-04T11:39:47.170 に答える