获取windows系统安装目录
代码如下
#include <iostream>
#include <windows.h>
int main(int argc, char* argv[])
{
TCHAR szPath[MAX_PATH];
GetWindowsDirectory(szPath,MAX_PATH);
std::cout << szPath << std::endl;
return 0;
}
Output:
C:\WINDOWS
评论