get_file_info
Retrieve file metadata including size, timestamps, type, and permissions without accessing file contents. Use to inspect file properties for system management and analysis.
Instructions
Retrieve detailed metadata about a file or directory, including size, creation time, modification time, access time, type, and permissions. This does not read file contents.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | The path to the file/directory |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "The path to the file/directory",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}