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

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

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

```ts theme={"theme":{"light":"github-light","dark":"dracula"}}
Bun.fileURLToPath("file:///path/to/file.txt");
// => "/path/to/file.txt"
```

***

参见 [文档 > API > Utils](/runtime/utils) 获取更多实用工具。
