Fllo
0
Q:

node path resolve

// Node.js program to demonstrate the    
// path.resolve() Method   
  
// Import the path module 
const path = require('path'); 
   
console.log("Current directory:", __dirname); 
   
// Resolving 2 path-segments 
// with the current directory 
path1 = path.resolve("users/admin", "readme.md"); 
console.log(path1) 
   
// Resolving 3 path-segments 
// with the current directory 
path2 = path.resolve("users", "admin", "readme.md"); 
console.log(path2) 
   
// Treating of the first segment 
// as root, ignoring the current directory 
path3 = path.resolve("/users/admin", "readme.md"); 
console.log(path3)
2

New to Communities?

Join the community