Bun.file(path).delete()
.
See Docs > API > FileSystem for more filesystem operations.
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
Was this page helpful?