Recursively copy this file or directory tree to the given destination.
(self, target, **kwargs)
| 379 | raise NotImplementedError |
| 380 | |
| 381 | def copy(self, target, **kwargs): |
| 382 | """ |
| 383 | Recursively copy this file or directory tree to the given destination. |
| 384 | """ |
| 385 | ensure_distinct_paths(self, target) |
| 386 | target._copy_from(self, **kwargs) |
| 387 | return target.joinpath() # Empty join to ensure fresh metadata. |
| 388 | |
| 389 | def copy_into(self, target_dir, **kwargs): |
| 390 | """ |
no test coverage detected