Differences between revisions 3 and 4
Revision 3 as of 2025-12-19 21:08:59
Size: 949
Comment: Cleanup
Revision 4 as of 2025-12-19 21:09:35
Size: 1024
Comment: Adding description
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= Node Path = = Node path =

The '''`path`''' module provides utilities for working with file paths.

Node path

The path module provides utilities for working with file paths.


Example

const os = require("os");
const path = require("path");

const myDocuments = path.join(os.homedir(), "Documents");


Constants

Constants

Description

path.delimiter

OS-specific path delimiter (as for a list of paths)

path.sep

OS-specific path separator


Functions

Function Name

Description

path.basename

path.dirname

path.extname

path.format

path.isAbsolute

path.join

path.normalize

path.parse

path.relative

path.resolve

path.toNamespacedPath


See also

Node API for path


CategoryRicottone

Node/Path (last edited 2025-12-19 21:09:35 by DominicRicottone)