Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

std/path/windows/mod.ts>toFileUrl

The Deno Standard Library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
function toFileUrl
import { toFileUrl } from "https://deno.land/std@0.222.1/path/windows/mod.ts";

Converts a path string to a file URL.

import { toFileUrl } from "https://deno.land/std@0.222.1/path/windows/to_file_url.ts";

toFileUrl("\\home\\foo"); // new URL("file:///home/foo")
toFileUrl("C:\\Users\\foo"); // new URL("file:///C:/Users/foo")
toFileUrl("\\\\127.0.0.1\\home\\foo"); // new URL("file://127.0.0.1/home/foo")

Parameters

path: string

to convert to file URL