Module

x/proc/tests/deps/path.ts>ParsedPath

A better way to work with processes in Deno.
Latest
interface ParsedPath
import { type ParsedPath } from "https://dotland.deno.dev/x/proc@0.21.9/tests/deps/path.ts";

A parsed path object generated by path.parse() or consumed by path.format().

Properties

root: string

The root of the path such as '/' or 'c:'

dir: string

The full directory path such as '/home/user/dir' or 'c:\path\dir'

base: string

The file name including extension (if any) such as 'index.html'

ext: string

The file extension (if any) such as '.html'

name: string

The file name without extension (if any) such as 'index'

import ParsedPath
import { ParsedPath } from "https://dotland.deno.dev/x/proc@0.21.9/tests/deps/path.ts";