> ## 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.

# 将文件 URL 转换为绝对路径

使用 `Bun.fileURLToPath()` 将 `file://` URL 转换为绝对路径。

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

***

参见 [工具](/runtime/utils)。
