| 700 | } |
| 701 | |
| 702 | std::wstring PathWithoutTrailingSlash(const PlatformFilename& fn) { |
| 703 | std::wstring path = fn.ToNative(); |
| 704 | while (!path.empty() && path.back() == kNativeSep) { |
| 705 | path.pop_back(); |
| 706 | } |
| 707 | return path; |
| 708 | } |
| 709 | |
| 710 | Result<std::vector<WIN32_FIND_DATAW>> ListDirInternal(const PlatformFilename& dir_path) { |
| 711 | WIN32_FIND_DATAW find_data; |
no test coverage detected