#include "ICommand.h" #include #include namespace DB { class CommandMkDir final : public ICommand { public: CommandMkDir() { command_name = "mkdir"; description = "Creates a directory"; options_description.add_options()("parents", "recursively create directories")( "path", po::value(), "the path on which directory should be created (mandatory, positional)"); positional_options_description.add("path", 1); } void executeImpl(const CommandLineOptions & options, DisksClient & client) override { bool recursive = options.count("parents"); auto disk = client.getCurrentDiskWithPath(); String path = disk.getRelativeFromRoot(getValueFromCommandLineOptionsThrow(options, "path")); if (recursive) disk.getDisk()->createDirectories(path); else disk.getDisk()->createDirectory(path); } }; CommandPtr makeCommandMkDir() { return std::make_shared(); } }