interface default.ParsedPath
A parsed path object generated by path.parse() or consumed by path.format().
root: stringThe root of the path such as '/' or 'c:'
dir: stringThe full directory path such as '/home/user/dir' or 'c:\path\dir'
base: stringThe file name including extension (if any) such as 'index.html'
ext: stringThe file extension (if any) such as '.html'
name: stringThe file name without extension (if any) such as 'index'