IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 开发测试 -> C# 创建快捷方式、获取快捷方式链接地址 -> 正文阅读

[开发测试]C# 创建快捷方式、获取快捷方式链接地址

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;

namespace Sci
{
    // 添加引用 -> com组件 -> Windows Script Host Object Model
    // Interop.IWshRuntimeLibrary.dll
    class ShotCutTool
    {
        private static IWshRuntimeLibrary.WshShell shell;

        /// <summary>
        /// 为srcFile文件创建快捷方式
        /// </summary>
        /// <param name="srcFile">待创建快捷方式的文件</param>
        /// <param name="linkPath">快捷方式保存完整路径</param>
        /// <param name="arguments">快捷方式传递的参数信息</param>
        /// <param name="description">描述</param>
        /// <param name="hotkey">系统热键</param>
        /// <param name="iconLocation">快捷方式图标路径</param>
        public static void CreateShotCut(string srcFile, string linkPath = null, string arguments = null, string description = null, string hotkey = null, string iconLocation = null)
        {
            if (linkPath == null) linkPath = srcFile;
            linkPath += ".lnk";
            if (File.Exists(linkPath)) File.Delete(linkPath);               // 删除原有的lnk文件

            if(shell == null) shell = new IWshRuntimeLibrary.WshShell();
            IWshRuntimeLibrary.IWshShortcut shotcut = shell.CreateShortcut(linkPath);   // 创建一个指定名称路径的lnk
            shotcut.TargetPath = srcFile;                                               // 待创建链接的原文件

            if(arguments != null) shotcut.Arguments = arguments;            // 传递参数
            if (description != null) shotcut.Description = description;     // 链接描述
            if (hotkey != null) shotcut.Hotkey = hotkey;                    // 全局热键, 如:"CTRL+SHIFT+N"
            if (iconLocation != null) shotcut.IconLocation = iconLocation;  // 设置Icon图标

            shotcut.Save();                     // 保存link
        }

        /// <summary>
        /// 获取快捷方式的链接地址
        /// </summary>
        /// <param name="linkPath">快捷方式路径</param>
        /// <returns></returns>
        public static string GetTargetPath(string linkPath)
        {
            if (shell == null) shell = new IWshRuntimeLibrary.WshShell();
            IWshRuntimeLibrary.IWshShortcut shotcut = shell.CreateShortcut(linkPath);   // 创建一个指定名称路径的lnk

            string targetPath = shotcut.TargetPath;
            if (targetPath == null) targetPath = "";
            return targetPath;
        }
    }
}

  开发测试 最新文章
pytest系列——allure之生成测试报告(Wind
某大厂软件测试岗一面笔试题+二面问答题面试
iperf 学习笔记
关于Python中使用selenium八大定位方法
【软件测试】为什么提升不了?8年测试总结再
软件测试复习
PHP笔记-Smarty模板引擎的使用
C++Test使用入门
【Java】单元测试
Net core 3.x 获取客户端地址
上一篇文章      下一篇文章      查看所有文章
加:2022-03-30 18:55:28  更:2022-03-30 18:57:31 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/18 0:28:36-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码