list_files
Enumerate files in a Supabase Storage bucket folder to identify available files for processing or download operations, with optional filtering by file extension.
Instructions
Enumerate files in bucket folder for processing or download
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bucket_name | Yes | Bucket to search | |
file_extension | No | Filter by extension (.jpg, .png) | |
folder_path | No | Specific folder path |
Input Schema (JSON Schema)
{
"properties": {
"bucket_name": {
"description": "Bucket to search",
"maxLength": 63,
"minLength": 3,
"type": "string"
},
"file_extension": {
"description": "Filter by extension (.jpg, .png)",
"maxLength": 10,
"type": "string"
},
"folder_path": {
"description": "Specific folder path",
"maxLength": 300,
"type": "string"
}
},
"required": [
"bucket_name"
],
"type": "object"
}