当前位置:Gxlcms > JavaScript > node.js中的path.extname方法使用说明_node.js

node.js中的path.extname方法使用说明_node.js

时间:2021-07-01 10:21:17 帮助过:2人阅读

方法说明:

返回path路径文件扩展名,如果path以 ‘.' 为结尾,将返回 ‘.',如果无扩展名 又 不以'.'结尾,将返回空值。

语法:

代码如下:

path.extname(p)

由于该方法属于path模块,使用前需要引入path模块(var path= require(“path”) )

接收参数:

p path路径

例子:

代码如下:

path.extname('index.html')
// returns
'.html'
path.extname('index.')
// returns
'.'
path.extname('index')
// returns
''

源码:

代码如下:

exports.extname = function(path) {
return splitPath(path)[3];
};

人气教程排行