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