| 147 | } |
| 148 | |
| 149 | bool WinMakeDirectory(const TString& path) { |
| 150 | TUtf16String buf; |
| 151 | LPCWSTR ptr = UTF8ToWCHAR(path, buf); |
| 152 | return CreateDirectoryW(ptr, (LPSECURITY_ATTRIBUTES) nullptr); |
| 153 | } |
| 154 | // edited part of <Ntifs.h> from Windows DDK |
| 155 | |
| 156 | #define SYMLINK_FLAG_RELATIVE 1 |
no test coverage detected