> ## 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.pathToFileURL()` 将绝对路径转换为 `file://` URL。

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

***

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