| 101 | } |
| 102 | |
| 103 | int Utils::ReMoveFile(const string &filename) { |
| 104 | return remove(filename.c_str()); |
| 105 | } |
| 106 | |
| 107 | int Utils::MoveDir(const string &dirname, const string &destdirname) { |
| 108 | ColorLogInfo("%s move dir %s to %s", __func__, dirname.c_str(), destdirname.c_str()); |
nothing calls this directly
no outgoing calls
no test coverage detected