Node.js path.basename()方法

原文:https://www.geeksforgeeks.org/node-js-path-basename-method/

path.basename()方法用于获取文件路径的文件名部分。使用此方法时,将忽略结尾目录分隔符。

语法:

path.basename( path, extension )

参数:该方法接受两个参数,如上所述,如下所述:

  • Path: is the file path for extracting the file name.
  • Extension: This is an optional file extension that will be deleted from the returned string.

返回值:返回一个包含路径文件名部分的字符串。如果路径或扩展参数不是字符串值,它将引发错误。

下面的程序说明了 node.js 中的 path.basename()方法:

示例 1: 使用 UNIX 文件路径

// Node.js program to demonstrate the   
// path.basename() method

// Import the path module
const path = require('path');

path1 = path.basename('/home/user/bash/index.txt');
console.log(path1)

// Using the extension parameter
path2 = path.basename('/home/user/bash/index.txt', '.txt');
console.log(path2)

输出:

index.txt
index

示例 2: 使用 Windows 文件路径

// Node.js program to demonstrate the   
// path.basename() method

// Import the path module
const path = require('path');

path1 = path.basename('C:\\users\\bash\\index.html');
console.log(path1)

// Using the extension parameter
path2 = path.basename('C:\\users\\bash\\index.html', '.html');
console.log(path2)

输出:

index.html
index

参考:https://nodejs . org/docs/latest-v 11 . x/API/path . html # path _ path _ basename _ path _ ext