> ## Documentation Index
> Fetch the complete documentation index at: https://bun.ll1025.cn/llms.txt
> Use this file to discover all available pages before exploring further.

# 删除文件

`Bun.file()` 函数接受一个路径并返回 `BunFile` 实例。使用 `.delete()` 方法删除该文件。

```ts theme={null}
const path = "/path/to/file.txt";
const file = Bun.file(path);

await file.delete();
```

***

参见 [`Bun.file()`](/runtime/file-io#reading-files-bun-file)。
