Files
bun.sh/docs/guides/write-file/unlink.md
2025-07-10 00:10:43 -07:00

382 B

name
name
Delete a file

The Bun.file() function accepts a path and returns a BunFile instance. Use the .delete() method to delete the file.

const path = "/path/to/file.txt";
const file = Bun.file(path);

await file.delete();

See Docs > API > File I/O for complete documentation of Bun.file().