C 操作登錄檔

2022-09-08 05:48:14 字數 794 閱讀 7609

using microsoft.win32;

1

///登錄檔操作相關

2public

class

regedit335

catch

3639

return

strregistdata;40}

4142

///向登錄檔中寫資料

43///

指定名稱

44///

指定值45

public

static

void writeregedit(string p_name, string

p_value)

4653

54///

刪除登錄檔中指定的登錄檔項

55///

指定名稱

56public

static

void deleteregist(string

p_name)

5770}71

catch

7275}76

77///

判斷指定登錄檔項是否存在

78///

指定名稱

79///

80public

static

bool isregeditexit(string

p_name)

8198}99

return

blnexit;

100}

101catch

102}

103 }

c 操作登錄檔

1.讀取指定名稱的登錄檔的值 private string getregistdata string name 以上是讀取的登錄檔中hkey local machine software目錄下的 目錄中名稱為name的登錄檔值 2.向登錄檔中寫資料 private void wtregedit st...

C 登錄檔操作

寫這篇日誌以前不是沒有接觸過c 來操作登錄檔,但這次的體會更深入了一點,故筆記如下。首先可以從 登錄檔reg檔案語法規則 了解下.reg檔案的語法規則,因為很多時候是把.reg裡的 轉換為程式裡的啊。知道語法後,可以根據裡面的 開始逐個轉化為c 了。首先是建立hkey,呼叫regcreatekey或...

C 操作登錄檔

windows 作業系統的登錄檔包含了很多有關計算機執行的配置方式,開啟登錄檔我們可以看到登錄檔是按類似於目錄的樹結構組織的,其中第二級目錄包含了五個預定義主鍵分別是 hkey classes root,hkey current user,hkey local machine,hkey users,...