* Build a map from folderId to its full VFS path segment (e.g. "My Folder/Sub Folder"). * Handles nested folders via parentId traversal.
(
folders: Array<{ folderId: string; folderName: string; parentId: string | null }>
)
| 1143 | * Handles nested folders via parentId traversal. |
| 1144 | */ |
| 1145 | private buildFolderPaths( |
| 1146 | folders: Array<{ folderId: string; folderName: string; parentId: string | null }> |
| 1147 | ): Map<string, string> { |
| 1148 | return buildVfsFolderPathMap(folders) |
| 1149 | } |
| 1150 | |
| 1151 | /** |
| 1152 | * Resolve the set of folder IDs that are effectively locked — locked directly |
no test coverage detected