Answers for "correct way to get the extension of the file in nodejs"

4

how to check file extension in node js

var path = require('path');

var ext = path.extname('/Users/Refsnes/demo_path.js');

  console.log(ext);
Posted by: Guest on July-27-2020
0

get file extension node

var path = require('path')

path.extname('index.html')
// returns
'.html'
Posted by: Guest on November-26-2021

Code answers related to "correct way to get the extension of the file in nodejs"

Code answers related to "Javascript"

Browse Popular Code Answers by Language