Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/proc/site/scripts/deps/path.ts>dirname

A better way to work with processes in Deno.
Latest
function dirname
import { dirname } from "https://deno.land/x/proc@0.22.1/site/scripts/deps/path.ts";

Return the directory path of a path.

Examples

Example 1

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

console.log(dirname("/home/user/Documents/")); // "/home/user"
console.log(dirname("/home/user/Documents/image.png")); // "/home/user/Documents"

Parameters

path: string
  • path to extract the directory from.

Returns

string