(self, path, client)
| 136 | |
| 137 | # algo mkdir <path> |
| 138 | def mkdir(self, path, client): |
| 139 | # make a dir in data collection |
| 140 | newDir = client.dir(path) |
| 141 | |
| 142 | if newDir.exists() is False: |
| 143 | newDir.create() |
| 144 | |
| 145 | # algo rmdir <path> |
| 146 | def rmdir(self, path, client, force=False): |