Return new path object with 'other' added to the basename
(self, other)
| 514 | return last |
| 515 | |
| 516 | def __add__(self, other): |
| 517 | """Return new path object with 'other' added to the basename""" |
| 518 | return self.new(basename=self.basename + str(other)) |
| 519 | |
| 520 | def visit(self, fil=None, rec=None, ignore=NeverRaised, bf=False, sort=False): |
| 521 | """Yields all paths below the current one |