media_getMediaFilesNames
Retrieve media file names matching a specific pattern from Anki databases using a glob pattern for organized file management and quick access.
Instructions
Gets the names of media files matching the glob pattern. Returns a list of filenames.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pattern | Yes | A glob pattern to match filenames (e.g., '*.jpg'). |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"pattern": {
"description": "A glob pattern to match filenames (e.g., '*.jpg').",
"title": "Pattern",
"type": "string"
}
},
"required": [
"pattern"
],
"type": "object"
}