using IWshRuntimeLibrary; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Install.Core.Common { /// <summary> /// 创建快捷方式的类 /// </summary> /// <remarks></remarks> public class ShortcutCreator { //需要引入IWshRuntimeLibrary,搜索Windows Script Host Object Model /// <summary> /// 创建快捷方式 /// </summary> /// <param name="directory">快捷方式所处的文件夹</param> /// <param name="shortcutName">快捷方式名称</param> /// <param name="targetPath">目标路径</param> /// <param name="description">描述</param> /// <param name="iconLocation">图标路径,格式为"可执行文件或DLL路径, 图标编号", /// 例如System.Environment.SystemDirectory + "\\" + "shell32.dll, 165"</param> /// <remarks></remarks> public static void CreateShortcut(string directory, string shortcutName, string targetPath, string description = null, string iconLocation = null) { if (!System.IO.Directory.Exists(directory)) { System.IO.Directory.CreateDirectory(directory); } string shortcutPath = Path.Combine(directory, string.Format("{0}.lnk", shortcutName)); WshShell shell = new WshShell(); //Console.WriteLine("CreateShortcut shortcutPath = " + shortcutPath); IWshShortcut shortcut = (IWshShortcut)shell.CreateShortcut(shortcutPath);//创建快捷方式对象 //Console.WriteLine("CreateShortcut targetPath = " + targetPath); shortcut.TargetPath = targetPath;//指定目标路径 shortcut.WorkingDirectory = Path.GetDirectoryName(targetPath);//设置起始位置 shortcut.WindowStyle = 1;//设置运行方式,默认为常规窗口 shortcut.Description = description;//设置备注 shortcut.IconLocation = string.IsNullOrWhiteSpace(iconLocation) ? targetPath : iconLocation;//设置图标路径 shortcut.Save();//保存快捷方式 } public static void DelShortcut(string directory, string targetPath) { if (!System.IO.Directory.Exists(directory)) { return; } WshShell shell = new WshShell(); string[] files = Directory.GetFiles(directory, "*.lnk"); foreach (string fromFileName in files) { IWshShortcut shortcut = (IWshShortcut)shell.CreateShortcut(fromFileName);//创建快捷方式对象 if (string.Compare(shortcut.TargetPath, targetPath, true) == 0) { System.IO.File.Delete(fromFileName); } } } public static string GetShortcut(string directory, string targetPath) { if (!System.IO.Directory.Exists(directory)) { return null; } WshShell shell = new WshShell(); string[] files = Directory.GetFiles(directory, "*.lnk"); foreach (string fromFileName in files) { IWshShortcut shortcut = (IWshShortcut)shell.CreateShortcut(fromFileName);//创建快捷方式对象 if (string.Compare(shortcut.TargetPath, targetPath, true) == 0) { return fromFileName; } } return null; } /// <summary> /// 创建桌面快捷方式 /// </summary> /// <param name="shortcutName">快捷方式名称</param> /// <param name="targetPath">目标路径</param> /// <param name="description">描述</param> /// <param name="iconLocation">图标路径,格式为"可执行文件或DLL路径, 图标编号"</param> /// <remarks></remarks> public static void CreateShortcutOnDesktop(string shortcutName, string targetPath, string description = null, string iconLocation = null) { string desktop = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);//获取桌面文件夹路径 CreateShortcut(desktop, shortcutName, targetPath, description, iconLocation); } } }