Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Bun.file(path).delete()
// Delete a file const file = Bun.file("path/to/file.txt"); await file.delete(); // Now the file doesn't exist const exists = await file.exists(); // => false
Was this page helpful?