| 594 | #endif |
| 595 | |
| 596 | void RemoveFile(const char* file) |
| 597 | { |
| 598 | #ifndef _WIN32 |
| 599 | remove(file); |
| 600 | #else |
| 601 | auto wpath = WideString(file); |
| 602 | _wremove(wpath.c_str()); |
| 603 | #endif |
| 604 | } |
| 605 | |
| 606 | int RemoveDir(const char* file) |
| 607 | { |
no test coverage detected