C 登錄檔操作類 實用操作函式

2021-06-05 23:48:56 字數 1350 閱讀 2663

using system;

using system.collections.generic;

using system.text;

using system.io;

using microsoft.win32;

namespace zfclient

}///

/// 讀取路徑為keypath,鍵名為keyname的登錄檔鍵值,預設返回def

///

/// 讀取路徑

/// 鍵名

/// 預設值

/// 讀取到的登錄檔鍵值

public string getregval(string keypath, string keyname, string def)

catch

}///

/// 設定路徑為keypath,鍵名為keyname的登錄檔鍵值為keyval

///

/// 設定路徑

/// 鍵名

/// 鍵值

/// 設定結果 true/false 成功與否

public bool setregval(string keypath, string keyname, string keyval)

catch

}///

///  建立路徑為keypath的鍵

///

/// 欲建立的鍵路徑

/// 建立後的登錄檔鍵,失敗返回null

public registrykey createregkey(string keypath)

catch

}///

/// 刪除路徑為keypath的子項

///

/// 欲刪除的路徑

/// 刪除結果 true/false 成功與否

public bool delregsubkey(string keypath)

catch

}///

/// 刪除路徑為keypath的子項及其附屬子項

///

/// 欲刪除的路徑

/// 刪除結果 true/false 成功與否

public bool delregsubkeytree(string keypath)

catch

}///

/// 刪除路徑為keypath下鍵名為keyname的鍵值

///

/// 路徑

/// 鍵名

/// 刪除結果 true/false 成功與否

public bool delregkeyval(string keypath, string keyname)

catch}}

}

登錄檔操作類

using system using system.collections.generic using system.text using microsoft.win32 操作登錄檔的命名空間 namespace winxpreg 讀取路徑為keypath,鍵名為keyname的登錄檔鍵值,預設返回...

登錄檔操作函式

登錄檔根鍵 hkey class root 副檔名的資訊 hkey current user 當前使用者的資訊 hkey local machine 本機軟硬體配置資訊 hkey users 所有使用者資訊 hkey current config 計算機的當前配置 long regopenkeyex...

c 操作登錄檔

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