path.parse()方法用於返回其屬性表示給定路徑的對象。此方法返回以下屬性:
- root(根名)
- dir(目錄名)
- base(帶擴展名的文件名)
- ext(僅擴展名)
- name(僅文件名)
對於每個平台,這些屬性的值可能不同。解析期間,它會忽略平台的尾隨目錄分隔符。
用法:
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
相關用法
注:本文由純淨天空篩選整理自sayantanm19大神的英文原創作品 Node.js | path.parse() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。