📜  如何在 nodejs 中使用 aws sdk 从 aws s3 下载文件数组 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:21.348000             🧑  作者: Mango

代码示例1
function listFiles(cb) {
    s3.stuff(params, cb);
}
function downlaodFile(key, cb) {
    s3.stuff(key, cb);
}
listFiles(function (err, fileKeys) {
    if (err) {
        throw err;//don't really but this is just an example
    }
    async.each(fileKeys, downloadFile, function done(err) {
        if (err) {
            throw err;
        }
    });
});