• Node.js Video Tutorials

Node.js - path.extname() 方法



Node.js 的 path.extname() 方法属于 path 模块,它根据路径中最后一个句点 (.) 字符的出现位置返回文件的扩展名部分。如果路径的最后一部分没有 (.),或者除了路径 basename 的第一个字符之外没有其他 (.) 字符,则返回空 字符串

语法

以下是 path 模块中 Node.js path.extname() 方法的语法:

path.extname( path )

参数

  • path − 此参数包含用于提取该特定文件扩展名部分的文件路径。此方法需要此参数,并且必须将其指定为有效的 字符串值。如果 path 不是字符串,则会抛出 TypeError

返回值

此方法返回一个 字符串,该字符串指定指定文件路径的扩展名部分。

示例

此方法将根据最后一个句点 (.) 字符的出现位置获取 path 的扩展名部分,忽略路径中的第一部分。

以下是 Node.js path.extname() 方法的不同变体。

const path = require('path');

var path1 = path.extname('main.js');
console.log(path1);

var path2 = path.extname('main.test.js');
console.log(path2);

var path2 = path.extname('main.');
console.log(path2);

var path2 = path.extname('.main');
console.log(path2);

var path2 = path.extname('main');
console.log(path2);

var path2 = path.extname('main..js');
console.log(path2);

var path2 = path.extname('main.js.');
console.log(path2);

输出

执行上述程序后,将生成以下输出:

.js
.js
.


.js
.

示例

如果我们将非 字符串类型的值传递给 path 参数,则 path.dirname() 方法将抛出 TypeError

在以下示例中,我们将 整数而不是 字符串传递给方法的 path 参数。

const path = require('path');

var path1 = path.extname(86598798);
console.log(path1);

TypeError

如果我们编译并运行上述程序,该方法将抛出 TypeError,因为 path 参数不是 字符串值。

path.js:39
   throw new ERR_INVALID_ARG_TYPE('path', 'string', path);
   ^

TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string. Received type number
   at assertPath (path.js:39:11)
   at Object.extname (path.js:1375:5)
   at Object.<anonymous> (/home/cg/root/63a028ab0650d/main.js:3:18)
   at Module._compile (internal/modules/cjs/loader.js:702:30)
   at Object.Module._extensions..js (internal/modules/cjs/loader.js:713:10)
   at Module.load (internal/modules/cjs/loader.js:612:32)
   at tryModuleLoad (internal/modules/cjs/loader.js:551:12)
   at Function.Module._load (internal/modules/cjs/loader.js:543:3)
   at Function.Module.runMain (internal/modules/cjs/loader.js:744:10)
   at startup (internal/bootstrap/node.js:238:19)
nodejs_path_module.htm
广告