list_directory
Lists the contents of a specified directory path to view files and subdirectories within a file system.
Instructions
List the contents of a directory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | The directory path to list |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "The directory path to list",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}