mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
20 lines
350 B
Markdown
20 lines
350 B
Markdown
---
|
|
name: Delete files
|
|
---
|
|
|
|
To delete a file, use `Bun.file(path).delete()`.
|
|
|
|
```ts
|
|
// 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](https://bun.com/docs/api/file-io) for more filesystem operations.
|