path.resolve() 方法

path.resolve('foo/bar', '/tmp/file/', '..', 'a/../subfile')

相当于在命令行执行如下操作


$ cd foo/bar
$ cd /tmp/file/
$ cd ..
$ cd a/../subfile
$ pwd

你可能感兴趣的:(path.resolve() 方法)