本SDK提供CopyObjectCommand
类用于拷贝文件,完整代码详见 Github 。
CopyObjectCommand
调用的 S3 API 为 CopyObject, 具体参见CopyObject API 文档。
参数说明
sourceBucket
: 源文件所在的存储空间sourceKey
: 源文件所在存储空间里的名称destinationBucket
: 目标存储空间destinationKey
: 文件在目标存储空间里的名称
示例
执行该示例前请确保配置文件的正确性
以下代码段需要在上下文中运行
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
const s3 = require('./s3Client');
const { PutObjectCommand, CopyObjectCommand } = require("@aws-sdk/client-s3");
async function copyFile(sourceBucket, sourceKey, destinationBucket, destinationKey) {
try {
const copySource = `${sourceBucket}/${sourceKey}`;
const params = {
CopySource: copySource,
Bucket: destinationBucket,
Key: destinationKey
};
const command = new CopyObjectCommand(params);
const response = await s3.send(command);
console.log("File copied successfully", response);
return response;
} catch (err) {
console.error("Error copying file", err);
throw err;
}
}
在
Example/
目录中运行以下命令执行该示例
1
$ node PutObjectCopy.js <sourceBucket> <sourceKey> <destinationBucket> <destinationKey>