upload_multiple
Upload multiple files to Tencent Cloud Object Storage (COS) by specifying local file paths and optional object keys for cloud storage management.
Instructions
批量上传多个文件到腾讯云COS
Input Schema
Name | Required | Description | Default |
---|---|---|---|
files | Yes | 文件数组,每个元素包含file_path和可选的object_key |
Input Schema (JSON Schema)
{
"properties": {
"files": {
"description": "文件数组,每个元素包含file_path和可选的object_key",
"items": {
"properties": {
"file_path": {
"description": "本地文件路径",
"type": "string"
},
"object_key": {
"description": "上传后在COS中的对象键名",
"type": "string"
}
},
"required": [
"file_path"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"files"
],
"type": "object"
}