(segments: string[])
| 67 | } |
| 68 | |
| 69 | function displayFolderPath(segments: string[]): string { |
| 70 | return segments.length > 0 ? `files/${segments.join('/')}` : 'files/' |
| 71 | } |
| 72 | |
| 73 | export function parseWorkspaceFileCreatePath(path: string): { |
| 74 | folderSegments: string[] |
no test coverage detected