VOOZH about

URL: https://www.geeksforgeeks.org/node-js/node-js-path-extname-method/

⇱ Node.js path.extname() Method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Node.js path.extname() Method

Last Updated : 13 Oct, 2021
The path.extname() method is used to get the extension portion of a file path. The extension string returned from the last occurrence of a period (.) in the path to the end of the path string. If there are no periods in the file path, then an empty string is returned. Syntax:
path.extname( path )
Parameters: This method accepts single parameter path which holds the file path that would be used to extract the extension. Return Value: It returns a string with the extension portion of the path. It throws a TypeError if this parameter is not a string value. Below examples illustrate the path.extname() method in node.js: Example 1: Output:
.txt
.md

.
.txt
.js
Example 2: Output:
/home/user/website/index.html
/home/user/website/contact_us.html
/home/user/website/services.html
Reference: https://nodejs.org/api/path.html#path_path_extname_path
Comment

Explore