Recursively copy this file or directory tree to the given destination.
(self, target, **kwargs)
| 333 | raise NotImplementedError |
| 334 | |
| 335 | def copy(self, target, **kwargs): |
| 336 | """ |
| 337 | Recursively copy this file or directory tree to the given destination. |
| 338 | """ |
| 339 | ensure_distinct_paths(self, target) |
| 340 | target._copy_from(self, **kwargs) |
| 341 | return target.joinpath() # Empty join to ensure fresh metadata. |
| 342 | |
| 343 | def copy_into(self, target_dir, **kwargs): |
| 344 | """ |
no test coverage detected