Ai
86 Star 326 Fork 253

InspireFunction/IFoxCAD

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
TestCadFilePath.cs 964 Bytes
一键复制 编辑 原始数据 按行查看 历史

namespace Test;
public class TestCadFilePath
{
[CommandMethod("TestCadFilePath")]
public void TestCadFilePathfun()
{
var key = HostApplicationServices.Current.UserRegistryProductRootKey;
// 计算机\HKEY_CURRENT_USER\SOFTWARE\Autodesk\AutoCAD\R24.0\ACAD-4101:804
var ackey = Registry.CurrentUser.OpenSubKey(key);
var profileskey = ackey?.OpenSubKey("Profiles");
var listkey = profileskey?.GetSubKeyNames();
if (listkey == null) return;
foreach (var item in listkey)
{
if (profileskey == null) continue;
var acadkey = profileskey.OpenSubKey($@"{item}\General", true);
const string name = "ACAD";
var str = acadkey?.GetValue(name)?.ToString();
if (str == null || str.Contains("nihao")) continue;
Env.Print(str);
acadkey?.SetValue(name, $@"{str}\nihao;", RegistryValueKind.String);
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/inspirefunction/ifoxcad.git
git@gitee.com:inspirefunction/ifoxcad.git
inspirefunction
ifoxcad
IFoxCAD
v0.9

搜索帮助