zoukankan      html  css  js  c++  java
  • c# 创建快捷方式

    之前网上找了几个方法,创建快捷方式,到windows 7 下竟然报错,或没有权限,今天经过一番搜索,终于找到一个很简单的方法:

    首先添加以下引用:COM下Windows Script Host Object Model

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using System.Runtime.InteropServices;
    using IWshRuntimeLibrary;
    using System.IO; 
    
    
    namespace WindowsFormsTest3
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }
    
            private void Form1_Load(object sender, EventArgs e)
            {
                IWshShell_Class shell = new IWshShell_ClassClass();
                var shortcut = shell.CreateShortcut(System.Environment.GetFolderPath(System.Environment.SpecialFolder.DesktopDirectory) + "\" + new FileInfo(Application.ExecutablePath).Name + ".lnk") as IWshShortcut;
                shortcut.TargetPath = Application.ExecutablePath;
                shortcut.Save();
            }
        }
    }

    创建URL快捷方式

    private bool createShortcut(string url)
            {
                var deskDir = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
                using (var sw = new StreamWriter(deskDir + "\网上阅卷系统.url"))
                {
                    sw.WriteLine("[InternetShortcut]");
                    sw.WriteLine("URL=" + url);
                    sw.Flush();
                }
    
                return true;
            }
  • 相关阅读:
    WCF 第二章 契约 异步访问服务操作
    WCF 第一章 基础 在IIS中寄宿服务
    哈希表 解释 和 实现
    ACM2010省赛总结
    hashTable实现
    c# winform 应用编程代码总结 14
    徽文化让世博更多彩
    c# winform 应用编程代码总结 15
    Socket用法详解
    IE插件技术 BHO C# IE 插件
  • 原文地址:https://www.cnblogs.com/nanfei/p/2963498.html
Copyright © 2011-2022 走看看