(path: string, content: any)
| 43 | } |
| 44 | |
| 45 | async write(path: string, content: any): Promise<void> { |
| 46 | throw new Error('Cannot write binary files directly. Use start_process with appropriate tools (Python, Node.js libraries, command-line utilities).'); |
| 47 | } |
| 48 | |
| 49 | async getInfo(path: string): Promise<FileInfo> { |
| 50 | const stats = await fs.stat(path); |
nothing calls this directly
no outgoing calls
no test coverage detected