Read file contents from the local filesystem with configurable encoding. Returns content, size, and encoding metadata.
| Date | Fitness | Safety | Calls |
|---|---|---|---|
| Mar 17 | 0.8070 | 0.86 | 1 |
{
"type": "object",
"required": [
"path"
],
"properties": {
"path": {
"type": "string",
"description": "File path to read"
},
"encoding": {
"enum": [
"utf-8",
"base64"
],
"type": "string",
"default": "utf-8"
}
}
} {
"type": "object",
"properties": {
"size": {
"type": "integer"
},
"content": {
"type": "string"
},
"encoding": {
"type": "string"
}
}
}