首页 > 代码库 > path操作

path操作

1. 通过当前目录获取想要的目录,采用relative函数,例如:

 function test(){
    var xx= path.relative(‘/‘, ‘../../‘);
    console.log(xx);    
 }
test();

 

path操作