删除文件或目录。
(path: string)
| 1568 | |
| 1569 | /** 删除文件或目录。 */ |
| 1570 | delete(path: string): Promise<{ success: true }>; |
| 1571 | |
| 1572 | /** 从内部附件存储读取附件(如 LLM 生成的图片)。直接返回 Blob 对象,通过 structured clone 传递。 */ |
| 1573 | readAttachment(id: string): Promise<ReadAttachmentResult>; |
no outgoing calls