(path string, currentDirectory string)
| 338 | } |
| 339 | |
| 340 | func GetNormalizedPathComponents(path string, currentDirectory string) []string { |
| 341 | combined := CombinePaths(currentDirectory, path) |
| 342 | return getNormalizedPathComponentsFromCombined(combined) |
| 343 | } |
| 344 | |
| 345 | func getNormalizedPathComponentsFromCombined(path string) []string { |
| 346 | rootLength := GetRootLength(path) |