file-share
Generate shareable links for files stored in 360 AI Cloud Drive. Supports bulk link creation for multiple files using specified paths.
Instructions
生成云盘文件的分享链接。支持批量生成多个文件的分享链接。
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| paths | Yes | 要分享的文件全路径,多个文件用竖线(|)隔开,例如:/文件1.txt|/文件夹2/文件2.txt | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "paths": {
      "description": "要分享的文件全路径,多个文件用竖线(|)隔开,例如:/文件1.txt|/文件夹2/文件2.txt",
      "type": "string"
    }
  },
  "required": [
    "paths"
  ],
  "type": "object"
}