3 #include <msp/core/systemerror.h>
11 void mkdir(const Path &path, int mode)
13 if(::mkdir(path.str().c_str(), mode)==-1)
14 throw system_error("mkdir");
17 void rmdir(const Path &path)
19 if(::rmdir(path.str().c_str())==-1)
20 throw system_error("rmdir");
26 return ::getcwd(buf, sizeof(buf));
29 void chdir(const Path &path)
31 if(::chdir(path.str().c_str())==-1)
32 throw system_error("chdir");