Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I need to know is exist some file or not. But the function returns false on an existing file Path to file C:\Windows\System32 Files VBAME.DLL, VEN2232.OLB and many other files.
What can i do with this?
Hm... I know why))... but i don't know how do something like this %windir%\Sysnative
I resolve my problem.
@QString getWindowsDir() { WCHAR dir[MAX_PATH]; SHGetFolderPath(0, CSIDL_WINDOWS, NULL, 0, dir); return QString::fromUtf16(reinterpret_cast<ushort*>(dir)); }
QString path = getWindowsDir() + "\SysNative\" + file;@