我想通过阅读SystemRoot在Windows中获取系统文件夹。
我该怎么做?
非常感谢!
最佳答案
如果要读取环境变量,请使用getenv或GetEnvironmentVariable。
但是,如果要查找%SYSTEMROOT%
目录,请考虑使用GetWindowsFolder
对于其他特殊文件夹,可以使用SHGetKnownFolderPath或SHGetFolderPath
关于c++ - 如何在C++中的Windows中从环境中读取,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3156163/