Make this path a symlink pointing to the target path. Note the order of arguments (link, target) is the reverse of os.symlink.
(self, target, target_is_directory=False)
| 1404 | |
| 1405 | if hasattr(os, "symlink"): |
| 1406 | def symlink_to(self, target, target_is_directory=False): |
| 1407 | """ |
| 1408 | Make this path a symlink pointing to the target path. |
| 1409 | Note the order of arguments (link, target) is the reverse of os.symlink. |
| 1410 | """ |
| 1411 | os.symlink(target, self, target_is_directory) |
| 1412 | else: |
| 1413 | def symlink_to(self, target, target_is_directory=False): |
| 1414 | """ |
no test coverage detected