file-upload-stdio
Upload local files to specified paths in 360 AI Cloud Drive. Supports batch uploading multiple files for efficient cloud storage management.
Instructions
将本地文件上传到云盘指定路径。支持批量上传多个文件。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePaths | Yes | 本地文件路径数组,例如:['/本地/文件1.txt', '/本地/文件2.jpg'] | |
uploadPath | No | 云盘上传目标路径,默认为根目录'/' | / |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePaths": {
"description": "本地文件路径数组,例如:['/本地/文件1.txt', '/本地/文件2.jpg']",
"items": {
"type": "string"
},
"type": "array"
},
"uploadPath": {
"default": "/",
"description": "云盘上传目标路径,默认为根目录'/'",
"type": "string"
}
},
"required": [
"filePaths"
],
"type": "object"
}