>  기사  >  백엔드 개발  >  Windows 레지스트리에서 값을 안전하게 읽는 방법: 단계별 가이드

Windows 레지스트리에서 값을 안전하게 읽는 방법: 단계별 가이드

Patricia Arquette
Patricia Arquette원래의
2024-11-02 03:30:02186검색

How to Safely Read Values from the Windows Registry: A Step-by-Step Guide

Windows 레지스트리에서 값을 안전하게 읽는 방법

레지스트리 키 존재 감지

레지스트리 키가 있는지 확인하려면:

<code class="cpp">LONG lRes = RegOpenKeyExW(HKEY_LOCAL_MACHINE, L"SOFTWARE\Perl", 0, KEY_READ, &hKey);
if (lRes == ERROR_SUCCESS) {
  // Key exists
} else if (lRes == ERROR_FILE_NOT_FOUND) {
  // Key does not exist
}</code>

레지스트리 값 읽기

키의 기본값을 검색하려면:

<code class="cpp">std::wstring strKeyDefaultValue;
GetStringRegKey(hKey, L"", strKeyDefaultValue, L"bad");</code>

문자열 값을 검색하려면:

<code class="cpp">std::wstring strValueOfBinDir;
GetStringRegKey(hKey, L"BinDir", strValueOfBinDir, L"bad");</code>

DWORD를 검색하려면 값:

<code class="cpp">DWORD nValue;
LONG nError = GetDWORDRegKey(hKey, L"DWORD_Value_Name", nValue, 0);</code>

부울 값을 검색하려면:

<code class="cpp">bool bValue;
LONG nError = GetBoolRegKey(hKey, L"BOOL_Value_Name", bValue, false);</code>

추가 참고 사항

이러한 함수에는 다음 라이브러리 종속성이 필요합니다.

  • Advapi32.lib

이러한 함수는 값을 읽는 용도로만 사용된다는 점을 기억하세요. 가능하면 레지스트리에 쓰지 마십시오.

위 내용은 Windows 레지스트리에서 값을 안전하게 읽는 방법: 단계별 가이드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.