get_file_info
Retrieve detailed metadata about files or directories including size, type, permissions, and modification dates to analyze file system contents.
Instructions
Get detailed information about a file or directory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | The file or directory path to get info about |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "The file or directory path to get info about",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}