get_file_info
Retrieve file metadata like size and line count without accessing file contents. Helps determine optimal reading strategies for large files by analyzing file characteristics first.
Instructions
Get file metadata without reading contents. Useful to check size/line count before reading. For large files, provides reading strategy recommendations.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | File path to get info about |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "File path to get info about",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}