Return the string representation of the path with forward (/) slashes.
(self)
| 323 | return parts |
| 324 | |
| 325 | def as_posix(self): |
| 326 | """Return the string representation of the path with forward (/) |
| 327 | slashes.""" |
| 328 | return str(self).replace(self.parser.sep, '/') |
| 329 | |
| 330 | @property |
| 331 | def _raw_path(self): |