list_directory
Get a detailed listing of files and directories in a specified path, including names, types, sizes, and modification times to understand directory structure and locate files.
Instructions
Get a detailed listing of all files and directories in a specified path. Results include names, types (file/directory), sizes, and modification times. Useful for understanding directory structure and finding files.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | The path of the directory to list |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "The path of the directory to list",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}