| 119 | } |
| 120 | |
| 121 | int makeDir(std::string path) { |
| 122 | std::cout << "[COMMAND] mkdir " << path << '\n'; |
| 123 | return mkdir(path.c_str(), S_IRWXU | S_IRWXG | S_IRWXO); |
| 124 | } |
| 125 | |
| 126 | void copy(std::string src, std::string dest, bool isRecursive) { |
| 127 | std::string command = "cp "; |
no outgoing calls