Ensure the path joined with args is a directory.
(self, *args)
| 448 | return "" |
| 449 | |
| 450 | def ensure_dir(self, *args): |
| 451 | """Ensure the path joined with args is a directory.""" |
| 452 | return self.ensure(*args, dir=True) |
| 453 | |
| 454 | def bestrelpath(self, dest): |
| 455 | """Return a string which is a relative path from self |