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

350 B

name
name
Delete files

To delete a file, use 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

See Docs > API > FileSystem for more filesystem operations.