#include "shell.hpp" void shell::c_mkdir (std::string args) { // sanity checks if ( cwd_.exists (args) ) { carp ("Already exists: " + args); return; } // create the directory //cwd_.open_dir (args, saga::filesystem::Create); saga::filesystem::directory d(cwd_.get_url()); saga::filesystem::directory d_2 = d.open_dir(args, saga::filesystem::Create); return; }