简单上传

本SDK提供PutObjectCommand类用于上传操作,大文件(5G以上)请使用分片上传,完整代码详见 GithubPutObjectCommand调用的 S3 API 为 PutObject, 具体参见PutObject API 文档

参数说明

  • Bucket: 文件上传后所在的存储空间
  • Key: 文件上传后在存储空间里的名称
  • Body: 待上传的文件全路径

示例

执行该示例前请确保配置文件的正确性
以下代码段需要在上下文中运行

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
const s3 = require('./s3Client');
const { PutObjectCommand } = require("@aws-sdk/client-s3");
const fs = require('fs');

async function uploadFile(bucketName, keyName, filePath) {
    try {
        const fileContent = fs.readFileSync(filePath); 
        const params = {
            Bucket: bucketName,
            Key: keyName,
            Body: fileContent
        };    
        const command = new PutObjectCommand(params);
        const response = await s3.send(command);
        console.log("File uploaded successfully", response);
        return response;
    } catch (err) {
        console.error("Error uploading file", err);
        throw err;
    }
}

Example/ 目录中运行以下命令执行该示例

1
$ node PutObject.js <bucketName> <keyName> <filePath>