fs_get_file_info
Retrieve detailed file or directory information including size, permissions, and timestamps for development environment analysis.
Instructions
Get detailed information about a file or directory (size, permissions, timestamps, etc.)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Absolute or relative path to the file or directory |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Absolute or relative path to the file or directory",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}