make-dir
Create new folders in the 360 AI Cloud Drive by specifying the desired path, enabling organized file management and structure within the cloud storage.
Instructions
在云盘中创建新文件夹,支持指定路径。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fname | Yes | 要创建的文件夹完整路径,例如:/新文件夹/ 或 /文档/子文件夹/ |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fname": {
"description": "要创建的文件夹完整路径,例如:/新文件夹/ 或 /文档/子文件夹/",
"type": "string"
}
},
"required": [
"fname"
],
"type": "object"
}