| 222 | } |
| 223 | |
| 224 | bool directoryExits(const char* path, char* outPath) |
| 225 | { |
| 226 | DWORD attr = GetFileAttributesA(path); |
| 227 | if (GetFileAttributesA(path) == INVALID_FILE_ATTRIBUTES) { return false; } |
| 228 | return (attr & FILE_ATTRIBUTE_DIRECTORY) != 0; |
| 229 | } |
| 230 | |
| 231 | bool exists( const char *path ) |
| 232 | { |
no outgoing calls
no test coverage detected