Ticker

6/recent/ticker-posts

nodejs path module

const path = require('path');
var pathObj = path.parse(__filename);
console.log(pathObj);
> node path-module.js
{ root: 'C:\\',
  dir: 'C:\\Users\\Edward Lance Lorilla\\Documents\\node-practice',
  base: 'path-module.js',
  ext: '.js',
  name: 'path-module' }

Post a Comment

0 Comments