Bun

指南运行时

使用 Bun 删除文件

要删除文件,请使用 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

请参阅 文档 > API > 文件系统 以了解更多文件系统操作。