今天介绍一下在注册表中添加系统右键菜单实现在文件夹的右键菜单中添加,删除以及查找是否已经添加的方法。
注意这里的方法仅限于Windows11之前使用,Windows11默认的右键菜单已经改变,需要使用其他方式处理。
RegistryKey shell = Registry.ClassesRoot.OpenSubKey("directory", false).OpenSubKey("shell", false); if (shell == null) { return false; } if (shell.GetSubKeyNames().Any(x => x == 查找的key) { turn true; } return false;
这里首先我们在ClassesRoot
中打开directory
,这里使用false
即可,因为我们只是查找,不需要写入。使用false
的好处是对权限要求比较低,更不容易出问题。
RegistryKey shell = Registry.ClassesRoot.OpenSubKey("directory", true).OpenSubKey("shell", true); if (shell == null) shell = Registry.ClassesRoot.OpenSubKey("directory", true).CreateSubKey("shell"); RegistryKey custome = shell.CreateSubKey(你的键名称); custome.SetValue("", 你的菜单名称); RegistryKey cmd = custome.CreateSubKey("command"); cmd.SetValue("", Application.ExecutablePath + " %1"); cmd.Close(); custome.Close(); shell.Close(); } MessageBox.Show("注册成功!", "提示");
这里注意几个地方,首先directory
这个Key肯定是存在的,其次是它可能没有shell
这个子key。
所以我们要判断一下,如果没有shell
就创建一下。
然后注意这个RegistryKey custome = shell.CreateSubKey(你的键名称);
这里的键名称可以直接与你的菜单名一致,比如你想统计文件数量,那这里可以写成RegistryKey custome = shell.CreateSubKey("统计此文件夹文件数量");
如果这样写,那么下面的那句custome.SetValue("", 你的菜单名称);
就可以不写了。
但是如果你的键名称有些特殊字符,或者为了好看一些,可以把键名称命名为简单的名字,比如RegistryKey custome = shell.CreateSubKey("sum");
然后在SetValue
的时候给真正的显示名称custome.SetValue("", "统计此文件夹文件数量");
这两种写法都可以。
然后是固定写法,RegistryKey cmd = custome.CreateSubKey("command");
创建一个叫command
的键,在这个键里面加执行路径,cmd.SetValue("", Application.ExecutablePath + " %1");
这个Application.ExecutablePath
是启动文件的路径,这里我们使用这个右键菜单打开自己的程序,你如果想打开其他的程序,把这里修改成对应的程序的完整路径即可。后面的%1
是文件夹的路径,它会作为第一个参数传入你的程序,在main
的string[] args
里既可获取到对应的路径。
最后不要忘记关闭所有的key,就完成了。
删除跟添加路子一样,只不过一个是加上一个子菜单项,一个是把子菜单项全部删掉就是了。
RegistryKey shell = Registry.ClassesRoot.OpenSubKey("directory", true).OpenSubKey("shell", true); if (shell != null) shell.DeleteSubKeyTree(你的键名称); shell.Close();
这里注意下这个键名称要跟你添加的时候的键名称保持一致就行了。