(parent_path, name)
| 2364 | |
| 2365 | |
| 2366 | def _join_tree_path(parent_path, name): |
| 2367 | name = name or '' |
| 2368 | if not parent_path or parent_path == '/': |
| 2369 | return '/' + name if name else '/' |
| 2370 | return parent_path.rstrip('/') + '/' + name |
| 2371 | |
| 2372 | |
| 2373 | def _collect_tree_share_targets(params, folder, show_records): |