Files
bun.sh/docs/guides/runtime/delete-file.mdx
2025-11-21 14:06:19 -08:00

22 lines
419 B
Plaintext

---
title: Delete files
sidebarTitle: Delete files
mode: center
---
To delete a file, use `Bun.file(path).delete()`.
```ts delete-file.ts icon="/icons/typescript.svg"
// 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
```
---
See [Docs > API > FileSystem](/runtime/file-io) for more filesystem operations.