Bun

指南编写文件

使用 Bun 删除文件

要使用 Bun 同步删除文件,请使用 node:fs 模块中的 unlinkSync 函数。(目前,没有用于删除文件的 Bun API。)

import { unlinkSync } from "node:fs";

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

要异步删除文件,请使用 node:fs/promises 模块中的 unlink 函数。

import { unlink } from "node:fs/promises";

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