list_directory
Retrieve contents of a specified directory by providing its path. Lists files and directories with [FILE] or [DIR] prefixes for clear identification.
Instructions
List directory contents with [FILE] or [DIR] prefixes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to the directory to list |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to the directory to list",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}