import { pathUtils } from "https://deno.land/x/dtils@2.4.0/deps.ts";
Utilities for working with OS-specific file paths.
Functions from this module will automatically switch to support the path style
of the current OS, either windows
for Microsoft Windows, or posix
for
every other operating system, eg. Linux, MacOS, BSD etc.
To use functions for a specific path style regardless of the current OS import the modules from the platform sub directory instead.
Example, for posix
:
import { fromFileUrl } from "https://deno.land/std@0.224.0/path/posix/from_file_url.ts";
const p = fromFileUrl("file:///home/foo");
console.log(p); // "/home/foo"
or, for windows
:
import { fromFileUrl } from "https://deno.land/std@0.224.0/path/windows/from_file_url.ts";
const p = fromFileUrl("file:///home/foo");
console.log(p); // "\\home\\foo"
This module is browser compatible.
Functions
Return the last portion of a | |
Determines the common path from a set of paths, using an optional separator, which defaults to the OS default separator. | |
Return the directory path of a | |
Return the extension of the | |
Generate a path from | |
Converts a file URL to a path string. | |
Convert a glob string to a regular expression. | |
Verifies whether provided path is absolute | |
Test whether the given string is a glob | |
Join all given a sequence of | |
Like join(), but doesn't collapse "**/.." when | |
Normalize the | |
Like normalize(), but doesn't collapse "**/.." when | |
Return a | |
Return the relative path from | |
Resolves path segments into a | |
Converts a path string to a file URL. | |
Resolves path to a namespace path |
Interfaces
A parsed path object generated by path.parse() or consumed by path.format(). |