find_files
Search for files matching a specific pattern within allowed directories and display their paths. Exclude specified directories to refine results.
Instructions
在允許的目錄中找尋所有符合檔名模式的檔案並標示其檔案路徑
Input Schema
Name | Required | Description | Default |
---|---|---|---|
excludeDirs | No | ||
filePattern | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"excludeDirs": {
"items": {
"type": "string"
},
"type": "array"
},
"filePattern": {
"type": "string"
}
},
"required": [
"filePattern"
],
"type": "object"
}