使用Node.js的path模块的方法
我整理了 path 模块的使用方法。
前提条件 (Qian ti tiao jian)
- npmがインストールされていること
使用方法
设定
使用`touch`命令创建文件。
$ touch test.js
const path = require('path')
console.log('basename:', path.basename('./dir/test.txt'))
console.log('dirname:', path.dirname('./dir/test.txt'))
console.log('extname:', path.extname('./dir/test.txt'))
console.log('parse:', path.parse('./dir/test.txt'))
console.log('join:', path.join('dir', 'dir2', 'test.txt'))
console.log('relative:', path.relative('./dir', './dir2/test.txt'))
执行
执行node命令。
$ node test
输出结果
basename: test.txt
dirname: ./dir
extname: .txt
parse: { root: '',
dir: './dir',
base: 'test.txt',
ext: '.txt',
name: 'test' }
join: dir/dir2/test.txt
relative: ../dir2/test.txt
文献引用
此文的撰写是参考以下信息而进行的。
- パス操作(path)とファイル操作(fs)