方法說明:
將參數 to 位置的字符解析到一個絕對路徑裡。
語法:
代碼如下:
path.resolve([from ...], to)
由於該方法屬於path模塊,使用前需要引入path模塊(var path= require(“path”) )
接收參數:
from 源路徑
to 將被解析到絕對路徑的字符串
例子:
代碼如下:
path.resolve('/foo/bar', './baz')
// returns
'/foo/bar/baz'
path.resolve('/foo/bar', '/tmp/file/')
// returns
'/tmp/file'
path.resolve('wwwroot', 'static_files/png/', '../gif/image.gif')
// if currently in /home/myself/node, it returns
'/home/myself/node/wwwroot/static_files/gif/image.gif'
另一種方法是把它作為一個序列的cd命令shell。
代碼如下:
path.resolve('foo/bar', '/tmp/file/', '..', 'a/../subfile')
類似於:
代碼如下:
cd foo/bar
cd /tmp/file/
cd ..
cd a/../subfile
pwd