示例代码请访问我的GitHub:
path(路径)
path模块主要用来对文件路径进行处理,比如提取路径、后缀,拼接路径等。
path的使用
接下来通过一些例子熟悉一下path的使用:
代码示例:/lesson12/path.js
const path = require('path')const str = '/root/a/b/1.txt'console.log(path.dirname(str)) // 获取文件目录:/root/a/bconsole.log(path.basename(str)) // 获取文件名:1.txtconsole.log(path.extname(str)) // 获取文件后缀:.txtconsole.log(path.resolve(str, '../c', 'build', 'strict')) // 将路径解析为绝对路径:C:\root\a\b\c\build\strictconsole.log(path.resolve(str, '../c', 'build', 'strict', '../..', 'assets')) // 将路径解析为绝对路径:C:\root\a\b\c\assetsconsole.log(path.resolve(__dirname, 'build')) // 将路径解析为绝对路径:C:\projects\nodejs-tutorial\lesson12\build复制代码
值得一提的是path.resolve方法,它可以接收任意个参数,然后根据每个路径参数之间的关系,将路径最终解析为一个绝对路径。
__dirname指的是当前模块所在的绝对路径名称,它的值会自动根据当前的绝对路径变化,等同于path.dirname(__filename)的结果。