list_objects
Retrieve a list of objects within a MinIO storage bucket, optionally filtering by prefix and enabling recursive search for organized file management.
Instructions
列出存储桶中的对象
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bucketName | Yes | 存储桶名称 | |
prefix | No | 对象名前缀(可选) | |
recursive | No | 是否递归列出 |
Input Schema (JSON Schema)
{
"properties": {
"bucketName": {
"description": "存储桶名称",
"type": "string"
},
"prefix": {
"description": "对象名前缀(可选)",
"type": "string"
},
"recursive": {
"default": false,
"description": "是否递归列出",
"type": "boolean"
}
},
"required": [
"bucketName"
],
"type": "object"
}