| 121 | } |
| 122 | |
| 123 | bool WinExists(const TString& path) { |
| 124 | TUtf16String buf; |
| 125 | LPCWSTR ptr = UTF8ToWCHAR(path, buf); |
| 126 | return ::GetFileAttributesW(ptr) != INVALID_FILE_ATTRIBUTES; |
| 127 | } |
| 128 | |
| 129 | TString WinCurrentWorkingDirectory() { |
| 130 | TTempBuf result; |
no test coverage detected