Skip to main content
Module

std/path/posix/mod.ts>dirname

The Deno Standard Library
Go to Latest
function dirname
import { dirname } from "https://deno.land/std@0.222.1/path/posix/mod.ts";

Return the directory path of a path.

Examples

Example 1

import { dirname } from "https://deno.land/std@0.222.1/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