📜  Node.js path.parse() 方法

📅  最后修改于: 2022-05-13 01:56:29.269000             🧑  作者: Mango

Node.js path.parse() 方法

path.parse() 方法用于返回其属性表示给定路径的对象。此方法返回以下属性:

  • 根(根名称)
  • dir(目录名)
  • base(带扩展名的文件名)
  • 分机(仅分机)
  • 名称(仅文件名)

对于每个平台,这些属性的值可能不同。它在解析过程中忽略平台的尾随目录分隔符。

句法:

path.parse( path )

参数:此方法接受单个参数路径,其中包含该方法将解析的文件路径。如果此参数不是字符串值,则会引发 TypeError。

返回值:此方法返回一个包含路径详细信息的对象。

下面的示例说明了 node.js 中的path.parse() 方法

示例 1:在 POSIX 上

// Node.js program to demonstrate the   
// path.parse() method
  
// Import the path module
const path = require('path');
   
path1 = path.parse("/users/admin/website/index.html");
console.log(path1);
   
path2 = path.parse("website/readme.md");
console.log(path2);

输出:

{
  root: '/',
  dir: '/users/admin/website',
  base: 'index.html',
  ext: '.html',
  name: 'index'
}
{
  root: '',
  dir: 'website',
  base: 'readme.md',
  ext: '.md',
  name: 'readme'
}

示例 2:在 Windows 上

// Node.js program to demonstrate the   
// path.parse() method
  
// Import the path module
const path = require('path');
   
path1 = path.parse("C:\\users\\admin\\website\\index.html");
console.log(path1);
   
path2 = path.parse("website\\style.css");
console.log(path2);

输出:

{
  root: 'C:\\',
  dir: 'C:\\users\\admin\\website',
  base: 'index.html',
  ext: '.html',
  name: 'index'
}
{
  root: '',
  dir: 'website',
  base: 'style.css',
  ext: '.css',
  name: 'style'
}

参考: https://nodejs.org/api/path.html#path_path_parse_path