Skip to main content
Module

x/lume/deps/path.ts>ParsedPath

🔥 Static site generator for Deno 🦕
Very Popular
Go to Latest
interface ParsedPath
Re-export
import { type ParsedPath } from "https://deno.land/x/lume@v2.1.3/deps/path.ts";

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

Examples

Example 1

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

const parsedPathObj = parse("c:\\path\\dir\\index.html");
parsedPathObj.root; // "c:\\"
parsedPathObj.dir; // "c:\\path\\dir"
parsedPathObj.base; // "index.html"
parsedPathObj.ext; // ".html"
parsedPathObj.name; // "index"

Properties

root: string

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

dir: string

The full directory path of the parent 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'