list-images
Locate and generate a list of image files within a specified directory, with options to include subdirectories, using the searchPath input to define the target location.
Instructions
Find and list image files in a directory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
recursive | No | Whether to search subdirectories recursively | |
searchPath | Yes | Directory path to search for images (supports ~ for home directory) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"recursive": {
"default": false,
"description": "Whether to search subdirectories recursively",
"type": "boolean"
},
"searchPath": {
"description": "Directory path to search for images (supports ~ for home directory)",
"type": "string"
}
},
"required": [
"searchPath"
],
"type": "object"
}