Runtime
Bundler
Package Manager
Test Runner
Guides
Reference
Blog
Install Bun
Guides File System

Delete files

To delete a file, use Bun.file(path).delete().

delete-file.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 for more filesystem operations.

On this page

No Headings