file-list
Retrieve a detailed list of files and folders from a specified path in the cloud drive, including names, sizes, and timestamps. Supports pagination for efficient browsing.
Instructions
获取云盘指定路径下的文件和文件夹列表,支持分页查询。返回文件名、大小、创建时间、修改时间等详细信息。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | 页码,默认从0开始。 | |
page_size | No | 每页显示的条目数,默认50条。 | |
path | No | 要查询的云盘路径,默认为根目录'/' | / |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"default": 0,
"description": "页码,默认从0开始。",
"type": "number"
},
"page_size": {
"default": 50,
"description": "每页显示的条目数,默认50条。",
"type": "number"
},
"path": {
"default": "/",
"description": "要查询的云盘路径,默认为根目录'/'",
"type": "string"
}
},
"type": "object"
}