(self, args)
| 133 | self.name = 'directory' |
| 134 | |
| 135 | def do_new(self, args): |
| 136 | self._check_arg('path', args) |
| 137 | |
| 138 | if not os.path.exists(args): |
| 139 | os.makedirs(args) |
| 140 | return os.path.abspath(args) |
| 141 | |
| 142 | def do_remove(self, args): |
| 143 | self._check_arg('path', args, invalids=['.', '/']) |
nothing calls this directly
no test coverage detected