list_directory
Lists the contents of a directory to view files and folders in Windows systems, enabling automated file system navigation and management.
Instructions
列出目录内容
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | 目录路径 |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "目录路径",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}