(self, name)
| 177 | os.rmdir(self.path) |
| 178 | |
| 179 | def file(self, name): |
| 180 | return LocalDataFile(self.client, 'file://' + pathJoin(self.path, name)) |
| 181 | |
| 182 | def dir(self, name): |
| 183 | raise NotImplementedError |
nothing calls this directly
no test coverage detected