| 537 | } |
| 538 | |
| 539 | Status DeleteDir(const std::string& dirname) override { |
| 540 | auto wDirname = toUtf16(dirname); |
| 541 | if (!::RemoveDirectoryW(wDirname.c_str())) { |
| 542 | return WindowsError(dirname, ::GetLastError()); |
| 543 | } |
| 544 | return Status::OK(); |
| 545 | } |
| 546 | |
| 547 | Status GetFileSize(const std::string& filename, uint64_t* size) override { |
| 548 | WIN32_FILE_ATTRIBUTE_DATA file_attributes; |
nothing calls this directly
no test coverage detected