interface path.ParsedPath
A parsed path object generated by path.parse() or consumed by path.format().
Properties Jump to heading
Jump to headingroot: stringThe root of the path such as '/' or 'c:'
Jump to headingdir: stringThe full directory path such as '/home/user/dir' or 'c:\path\dir'
Jump to headingbase: stringThe file name including extension (if any) such as 'index.html'
Jump to headingext: stringThe file extension (if any) such as '.html'
Jump to headingname: stringThe file name without extension (if any) such as 'index'