file-move
Move files or folders to a specified location in cloud storage. Supports batch moving multiple items for organized file management in 360 AI Cloud Drive.
Instructions
移动云盘中的文件或文件夹到指定位置。支持批量移动多个文件。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
new_name | Yes | 目标文件夹路径,例如:/目标文件夹/ | |
src_name | Yes | 源文件或文件夹路径,多个文件用竖线(|)分隔,例如:/文件1.txt|/文件2.txt |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"new_name": {
"description": "目标文件夹路径,例如:/目标文件夹/",
"type": "string"
},
"src_name": {
"description": "源文件或文件夹路径,多个文件用竖线(|)分隔,例如:/文件1.txt|/文件2.txt",
"type": "string"
}
},
"required": [
"src_name",
"new_name"
],
"type": "object"
}