Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Bun.file(path).delete()
// 删除文件 const file = Bun.file("path/to/file.txt"); await file.delete(); // 现在该文件不存在了 const exists = await file.exists(); // => false