Make the path absolute, resolving all symlinks on the way and also normalizing it.
(self, strict=False)
| 1128 | return path |
| 1129 | |
| 1130 | def resolve(self, strict=False): |
| 1131 | """ |
| 1132 | Make the path absolute, resolving all symlinks on the way and also |
| 1133 | normalizing it. |
| 1134 | """ |
| 1135 | |
| 1136 | return self.with_segments(os.path.realpath(self, strict=strict)) |
| 1137 | |
| 1138 | if pwd: |
| 1139 | def owner(self, *, follow_symlinks=True): |
no test coverage detected