list_directory_with_sizes
List files and directories in a specified path with sizes, identifying entries using [FILE] and [DIR] prefixes. Sort results by name or size to analyze directory structure and locate specific files efficiently.
Instructions
Get a detailed listing of all files and directories in a specified path, including sizes. Results clearly distinguish between files and directories with [FILE] and [DIR] prefixes. This tool is useful for understanding directory structure and finding specific files within a directory. Only works within allowed directories.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | ||
sortBy | No | Sort entries by name or size | name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"sortBy": {
"default": "name",
"description": "Sort entries by name or size",
"enum": [
"name",
"size"
],
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}