mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
41 lines
1.0 KiB
C++
41 lines
1.0 KiB
C++
#include "ICommand.h"
|
|
|
|
#include <Interpreters/Context.h>
|
|
#include <Common/TerminalSize.h>
|
|
|
|
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<String>(), "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<String>(options, "path"));
|
|
|
|
if (recursive)
|
|
disk.getDisk()->createDirectories(path);
|
|
else
|
|
disk.getDisk()->createDirectory(path);
|
|
}
|
|
};
|
|
|
|
CommandPtr makeCommandMkDir()
|
|
{
|
|
return std::make_shared<DB::CommandMkDir>();
|
|
}
|
|
|
|
}
|