写注册表创建文件关联

  1. usingSystem;
  2. usingSystem.Collections.Generic;
  3. usingSystem.Text;
  4. usingMicrosoft.Win32;
  5. namespaceFileAssociationLib
  6. {
  7. classFileAssociation
  8. {
  9. ///<summary>
  10. ///写注册表创建文件关联
  11. ///</summary>
  12. ///<paramname="fileFormat">文件格式(.png,.jpg...)</param>
  13. ///<paramname="filePath">程序执行路径</param>
  14. ///<returns>是否创建成功</returns>
  15. publicstaticboolCreateFileAssociation(stringfileFormat,stringfilePath)
  16. {
  17. boolisCreated=true;
  18. try
  19. {
  20. stringfileName=fileFormat.Split('.')[1]+"File";
  21. RegistryKeykey,keyico;
  22. key=Registry.ClassesRoot.CreateSubKey(fileName);
  23. key.SetValue("",filePath);
  24. //创建图标关联
  25. keyico=key.CreateSubKey("DefaultIcon");
  26. keyico.SetValue("",filePath+",0");
  27. //创建格式关联
  28. key=key.CreateSubKey("Shell");
  29. key=key.CreateSubKey("Open");
  30. key=key.CreateSubKey("Command");
  31. key.SetValue("","/""+filePath+"/"/"%1/"");
  32. key=Registry.ClassesRoot.CreateSubKey(fileFormat);
  33. key.SetValue("",fileName);
  34. }
  35. catch
  36. {
  37. isCreated=false;
  38. }
  39. returnisCreated;
  40. }
  41. }
  42. }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值