Skip to main content
Deno 2 is finally here 🎉️
Learn more
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
function fromFileUrl
import { fromFileUrl } from "https://deno.land/std@0.222.1/path/posix/from_file_url.ts";

Converts a file URL to a path string.

import { fromFileUrl } from "https://deno.land/std@0.222.1/path/posix/from_file_url.ts";

fromFileUrl("file:///home/foo"); // "/home/foo"

Parameters

url: URL | string

of a file URL

Returns

string