file_ops
Perform file operations including write, append, copy, move, and delete within the Code Editor MCP Server's sandboxed environment for secure file management.
Instructions
File operations: write, append, copy, move, or delete.
Args: action: "write" | "append" | "copy" | "move" | "delete" file_path: Target path (write/append/delete). content: File content (write/append). source_path: Source path (copy/move). destination_path: Destination path (copy/move). expected_mtime: Conflict detection timestamp. encoding: Text encoding for write/append (utf-8, gbk, gb2312).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | ||
| file_path | No | ||
| content | No | ||
| source_path | No | ||
| destination_path | No | ||
| expected_mtime | No | ||
| encoding | No | utf-8 |