Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/dtils/deps.ts>pathUtils.fromFileUrl

The best unofficial library of utilities for Deno applications
Go to Latest
function pathUtils.fromFileUrl
import { pathUtils } from "https://deno.land/x/dtils@2.5.0/deps.ts";
const { fromFileUrl } = pathUtils;

Converts a file URL to a path string.

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

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

// win32
fromFileUrl("file:///home/foo"); // "\\home\\foo"
fromFileUrl("file:///C:/Users/foo"); // "C:\\Users\\foo"
fromFileUrl("file://localhost/home/foo"); // "\\\\localhost\\home\\foo"

Parameters

url: string | URL

of a file URL

Returns

string