| 63 | } |
| 64 | |
| 65 | bool makeDirectory(const char* dir) |
| 66 | { |
| 67 | #ifdef _WIN32 |
| 68 | if (CreateDirectoryA(dir, NULL) || GetLastError() == ERROR_ALREADY_EXISTS) |
| 69 | { |
| 70 | return true; |
| 71 | } |
| 72 | #endif |
| 73 | |
| 74 | return false; |
| 75 | } |
| 76 | |
| 77 | void getCurrentDirectory(char* dir) |
| 78 | { |
no outgoing calls
no test coverage detected