mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
17 lines
331 B
Plaintext
17 lines
331 B
Plaintext
---
|
|
title: Convert an absolute path to a file URL
|
|
sidebarTitle: Path to file URL
|
|
mode: center
|
|
---
|
|
|
|
Use `Bun.pathToFileURL()` to convert an absolute path to a `file://` URL.
|
|
|
|
```ts
|
|
Bun.pathToFileURL("/path/to/file.txt");
|
|
// => "file:///path/to/file.txt"
|
|
```
|
|
|
|
---
|
|
|
|
See [Docs > API > Utils](/runtime/utils) for more useful utilities.
|