path.extname()方法用于获取文件路径的扩展部分。扩展字符串从路径中最后一次出现的句点(。)返回到路径字符串的末尾。如果文件路径中没有句点,则返回一个空字符串。
用法:
path.extname( path )
参数:此方法接受单个参数路径,该路径包含用于提取扩展名的文件路径。
返回值:它返回带有路径扩展部分的字符串。如果此参数不是字符串值,则抛出TypeError。
以下示例说明了node.js中的path.extname()方法:
范例1:
// Node.js program to demonstrate the
// path.extname() method
// Import the path module
const path = require('path');
path1 = path.extname("hello.txt");
console.log(path1)
path2 = path.extname("readme.md");
console.log(path2)
// File with no extension
// Returns empty string
path3 = path.extname("fileDump")
console.log(path3)
// File with blank extension
// Return only the period
path4 = path.extname("example.")
console.log(path4)
path5 = path.extname("readme.md.txt")
console.log(path5)
// Extension name of the current script
path6 = path.extname(__filename)
console.log(path6)
输出:
.txt .md . .txt .js
范例2:
// Node.js program to demonstrate the
// path.extname() method
// Import the path module
const path = require('path');
// Comparing extensions from a
// list of file paths
paths_array = [
"/home/user/website/index.html",
"/home/user/website/style.css",
"/home/user/website/bootstrap.css",
"/home/user/website/main.js",
"/home/user/website/contact_us.html",
"/home/user/website/services.html",
]
paths_array.forEach(filePath => {
if (path.extname(filePath) == ".html")
console.log(filePath);
});
输出:
/home/user/website/index.html /home/user/website/contact_us.html /home/user/website/services.html
参考: https://nodejs.org/api/path.html#path_path_extname_path
相关用法
注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 Node.js | path.extname() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。