fs_list_directory
List directory contents with detailed file information including type, size, and permissions for development environment navigation and file management.
Instructions
List contents of a directory with detailed information about each entry (name, type, size, permissions, etc.)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Absolute or relative path to the directory | |
| recursive | No | List subdirectories recursively | |
| showHidden | No | Show hidden files (starting with .) |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Absolute or relative path to the directory",
"type": "string"
},
"recursive": {
"default": false,
"description": "List subdirectories recursively",
"type": "boolean"
},
"showHidden": {
"default": false,
"description": "Show hidden files (starting with .)",
"type": "boolean"
}
},
"required": [
"path"
],
"type": "object"
}