| 176 | } |
| 177 | |
| 178 | bool createDirectory(const string& path) { |
| 179 | #if defined(OS_WIN) |
| 180 | return CreateDirectoryA(path.c_str(), NULL) != 0; |
| 181 | #else |
| 182 | return mkdir(path.c_str(), 0777) == 0; |
| 183 | #endif |
| 184 | } |
| 185 | |
| 186 | bool removeFile(const string& path) { |
| 187 | #if defined(OS_WIN) |
no outgoing calls
no test coverage detected