| 529 | } |
| 530 | |
| 531 | Status CreateDir(const std::string& dirname) override { |
| 532 | auto wDirname = toUtf16(dirname); |
| 533 | if (!::CreateDirectoryW(wDirname.c_str(), nullptr)) { |
| 534 | return WindowsError(dirname, ::GetLastError()); |
| 535 | } |
| 536 | return Status::OK(); |
| 537 | } |
| 538 | |
| 539 | Status DeleteDir(const std::string& dirname) override { |
| 540 | auto wDirname = toUtf16(dirname); |
nothing calls this directly
no test coverage detected