download_files
Download multiple files from MinIO storage buckets simultaneously by specifying file objects and local save paths. Streamlines batch file retrieval for efficient storage management.
Instructions
批量下载文件
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bucketName | Yes | 存储桶名称 | |
files | Yes | 文件列表 |
Input Schema (JSON Schema)
{
"properties": {
"bucketName": {
"description": "存储桶名称",
"type": "string"
},
"files": {
"description": "文件列表",
"items": {
"properties": {
"localPath": {
"description": "本地保存路径",
"type": "string"
},
"objectName": {
"description": "对象名称",
"type": "string"
}
},
"required": [
"objectName",
"localPath"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"bucketName",
"files"
],
"type": "object"
}