Make a directory, return its full pathname.
(self, dirname)
| 633 | return int(s) |
| 634 | |
| 635 | def mkd(self, dirname): |
| 636 | '''Make a directory, return its full pathname.''' |
| 637 | resp = self.voidcmd('MKD ' + dirname) |
| 638 | # fix around non-compliant implementations such as IIS shipped |
| 639 | # with Windows server 2003 |
| 640 | if not resp.startswith('257'): |
| 641 | return '' |
| 642 | return parse257(resp) |
| 643 | |
| 644 | def rmd(self, dirname): |
| 645 | '''Remove a directory.''' |
nothing calls this directly
no test coverage detected