Create a directory on remote hosts. :param path: Path to remote dir that must be created. Must be shlex quoted. :type path: ``str`` :rtype path: ``dict`` of ``str`` to ``dict``
(self, path)
| 186 | return self._execute_in_pool(self._put_files, **options) |
| 187 | |
| 188 | def mkdir(self, path): |
| 189 | """ |
| 190 | Create a directory on remote hosts. |
| 191 | |
| 192 | :param path: Path to remote dir that must be created. Must be shlex quoted. |
| 193 | :type path: ``str`` |
| 194 | |
| 195 | :rtype path: ``dict`` of ``str`` to ``dict`` |
| 196 | """ |
| 197 | |
| 198 | options = {"path": path} |
| 199 | return self._execute_in_pool(self._mkdir, **options) |
| 200 | |
| 201 | def delete_file(self, path): |
| 202 | """ |
no test coverage detected