Bun.file(path).delete()
// 删除文件 const file = Bun.file("path/to/file.txt"); await file.delete(); // 现在该文件不存在了 const exists = await file.exists(); // => false