Return the string representation of the path with forward (/) slashes.
(self)
| 897 | return str(self) |
| 898 | |
| 899 | def as_posix(self): |
| 900 | """Return the string representation of the path with forward (/) |
| 901 | slashes.""" |
| 902 | f = self._flavour |
| 903 | return str(self).replace(f.sep, '/') |
| 904 | |
| 905 | def __bytes__(self): |
| 906 | """Return the bytes representation of the path. This is only |