惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hacker News: Front Page
P
Palo Alto Networks Blog
T
ThreatConnect
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
T
True Tiger Recordings
P
Privacy & Cybersecurity Law Blog
B
Blog
IT之家
IT之家
Last Week in AI
Last Week in AI
F
Full Disclosure
Hacker News: Ask HN
Hacker News: Ask HN
C
Comments on: Blog
Microsoft Azure Blog
Microsoft Azure Blog
C
Cybersecurity and Infrastructure Security Agency CISA
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
N
News and Events Feed by Topic
NISL@THU
NISL@THU
腾讯CDC
雷峰网
雷峰网
Security Latest
Security Latest
李成银的技术随笔
M
Microsoft Research Blog - Microsoft Research
L
LangChain Blog
L
Lohrmann on Cybersecurity
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
C
Check Point Blog
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
博客园 - Franky
N
News | PayPal Newsroom
V
V2EX
A
About on SuperTechFans
The Register - Security
The Register - Security
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google Online Security Blog
Google Online Security Blog
MyScale Blog
MyScale Blog
Cisco Talos Blog
Cisco Talos Blog
Vercel News
Vercel News
WordPress大学
WordPress大学
C
Cyber Attacks, Cyber Crime and Cyber Security
The Hacker News
The Hacker News
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
爱范儿
爱范儿
A
Arctic Wolf
L
LINUX DO - 最新话题
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

博客园 - 嘻哈呵嘿

编程实现QQ表情文件CFC格式 一个小小的实用控件。 C#版的端口扫描器(PortScanner) - 嘻哈呵嘿 在asp.net中使用异步同步rss 为FireFox的XMLDocument 增加 LoadXML,SelectNodes,SelectSingleNode方法。 - 嘻哈呵嘿 AJAX实现的购物车,使用Cookie保存。 - 嘻哈呵嘿 - 博客园 AJAX查询域名。:) - 嘻哈呵嘿 - 博客园 FreeTextBox的Toolbars? ZeroForums论坛正式开始测试运行 看看你的PageRank? 不知不觉在网上就拥有了两G的邮局..... 在WinForm中使用Web Services 来实现 软件 自动升级( Auto Update ) (C#) - 嘻哈呵嘿 根据指定Value选定winForm中的ComboBox中的Item 影视频道完工中。 Windows 的 calc 的弱智bug~~~~ 原来老外也喜欢盗版和盗连。呵呵。 Flash的中文输入以有及乱码问题。(已解决) 使用自定义的WebControl来构建简单的WebForm - 嘻哈呵嘿 用xhtml和css构建快速的Web页。
使用反射为指定的文件类型创建关联
嘻哈呵嘿 · 2006-10-03 · via 博客园 - 嘻哈呵嘿

为指定的文件类型设立关联有很多方法,但这些方法在.Net中不能直接使用,今天从以前的代码中抽取一段利用反射功能实现建立文件类型关联的部分代码,以抛砖引玉,如有不妥之处,万望指教。

背景:这段代码是在我的一个小程序中使用到的,这个程序是一个自动代码生成器,名字叫做MyCodeCreator,有一个Solution的项目文件,扩展名为:mcclsn,现在我们为这个扩展名建立关联。

大家都知道建立关联无非是在注册表中动手脚,参考其它的扩展名的例子,我写了以下代码:

注册表存取方法

上面的一个方法是对注册表的存取。

 1        enum eStatus
 2        {
 3            Open,
 4            Create
 5        }

 6
 7        public static void AssocFileType()
 8        {
 9            RegistryKey lphKey = Registry.ClassesRoot;
10            string sKeyName, sKeyValue, sFileExt;
11            eStatus status;
12
13            sKeyName = "MCSF.File.1";
14            sKeyValue = "My CodeCreator Solution File";
15            sFileExt = ".mccsln";
16
17            RegistryKey sKey = OpenOrCreateSubKey(lphKey, sFileExt, out status);
18            if (status == eStatus.Create)
19            {
20                sKey.SetValue("", sKeyName);
21                sKey.SetValue("Content Type""application/mccsln");
22            }

23
24            sKey = OpenOrCreateSubKey(lphKey, sKeyName, out status);
25            if (status == eStatus.Create)
26            {
27                sKey.SetValue("", sKeyValue);
28                sKey.SetValue("BrowserFlags"8);
29                sKey.SetValue("EditFlags"0);
30            }

31
32            string path = Application.ExecutablePath + ",0";
33            RegistryKey icon = OpenOrCreateSubKey(sKey, "DefaultIcon"out status);
34            string regPath = icon.GetValue("""").ToString();
35            if (status == eStatus.Create)
36                icon.SetValue("", path);
37            else
38            {
39                if (!path.Equals(regPath))
40                    icon.SetValue("", path);
41            }

42            icon.Close();
43
44            sKey = OpenOrCreateSubKey(sKey, "shell"out status);
45            sKey = OpenOrCreateSubKey(sKey, "open"out status);
46            RegistryKey cmd = OpenOrCreateSubKey(sKey, "command"out status);
47            string cmdline = string.Format("\"{0}\" \"%1\"", Application.ExecutablePath);
48            string regCmdline = cmd.GetValue("""").ToString();
49            if (status == eStatus.Create)
50                cmd.SetValue("", cmdline);
51            else
52            {
53                if (!cmdline.Equals(regCmdline))
54                    cmd.SetValue("", cmdline);
55            }

56
57            RegistryKey dde = OpenOrCreateSubKey(sKey, "ddeexec"out status);
58            if (status == eStatus.Create)
59            {
60                OpenOrCreateSubKey(dde, "Application"out status).SetValue("""MyCodeCreator");
61                OpenOrCreateSubKey(dde, "Topic"out status).SetValue("""System");
62            }

63            dde.Close();
64
65            sKey.Flush();
66            sKey.Close();
67
68            lphKey.Close();
69        }


上面的代码意思很简单,无非就是照猫画虎而已。如果你需要套用上面的代码需要改动的地方不多,例如扩展名啊,可执行文件位置啊,图标等等。值得注意的事,当你执行完这些操作以后,关联不会马上生效,不知道什么原因,还望高手指教。

本文原发:无垠IT教学网