レジストリ キーの存在を安全に確認するには、KEY_READ を指定した RegOpenKeyExW を使用します。アクセスフラグ。関数が ERROR_SUCCESS を返した場合、キーは存在します。
<code class="pseudo-code">if (key exists) { get default value of key get string value of key get DWORD value of key }</code>
<code class="cpp">#include <windows.h> int main() { // Open the registry key HKEY hKey; LONG lRes = RegOpenKeyExW(HKEY_LOCAL_MACHINE, L"SOFTWARE\Perl", 0, KEY_READ, &hKey); // Check if the key exists bool bExistsAndSuccess = (lRes == ERROR_SUCCESS); // Get the default value of the key std::wstring strKeyDefaultValue; GetStringRegKey(hKey, L"", strKeyDefaultValue, L"bad"); return 0; } // Function to get a string value from the registry LONG GetStringRegKey(HKEY hKey, const std::wstring &strValueName, std::wstring &strValue, const std::wstring &strDefaultValue) { strValue = strDefaultValue; WCHAR szBuffer[512]; DWORD dwBufferSize = sizeof(szBuffer); ULONG nError; nError = RegQueryValueExW(hKey, strValueName.c_str(), 0, NULL, (LPBYTE)szBuffer, &dwBufferSize); if (ERROR_SUCCESS == nError) { strValue = szBuffer; } return nError; }</code>
以上がC でレジストリ キーと値を取得するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。