list_directory
View and retrieve a list of files and subdirectories within a specified directory using a standardized interface for terminal-based file system operations.
Instructions
List files and subdirectories in the specified directory
Args:
path: Directory path to list contents, default is current directory
Returns:
List of directory contents
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | No |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Path"
}
},
"title": "list_directoryArguments",
"type": "object"
}