get_file_info
Retrieve detailed metadata for files or directories by specifying their paths. Provides essential information for filesystem operations within allowed paths.
Instructions
Get detailed file/directory metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to the file or directory |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to the file or directory",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}