레지스트리 키의 존재를 안전하게 확인하려면 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!