* Return the directory name of a path. Similar to the Unix dirname command. * * @param path the path to evaluate.
(path: string)
| 99 | * @param path the path to evaluate. |
| 100 | */ |
| 101 | dirname(path: string): string; |
| 102 | /** |
| 103 | * Return the last portion of a path. Similar to the Unix basename command. |
| 104 | * Often used to extract the file name from a fully qualified path. |