c#创建桌面快捷方式
时间: 2023-11-22 19:45:33 浏览: 187
C# 创建桌面快捷方式
5星 · 资源好评率100%
在C#中创建桌面快捷方式,可以使用WshShellClass类和IWshShortcut接口。以下是创建桌面快捷方式的步骤:
1. 引用Windows Script Host Object Model,添加COM引用WScript.Shell。
2. 创建WshShellClass对象。
3. 使用CreateShortcut方法创建快捷方式对象。
4. 设置快捷方式的属性,例如TargetPath、WorkingDirectory、IconLocation等。
5. 使用Save方法保存快捷方式。
需要注意的是,如果要使用System.IO程序集中的File类,需要以全名引用之。同时,不要直接引用Interop.IWshRuntimeLibrary.dll程序集,因为它可能是x86或x64的,如果程序以Any CPU方式编译,则它不再有适配性。
以下是一个示例代码:
```
using IWshRuntimeLibrary;
// 创建桌面快捷方式
public static void CreateShortcut(string shortcutName, string targetPath, string workingDirectory, string iconPath)
{
// 创建WshShellClass对象
WshShellClass wshShell = new WshShellClass();
// 使用CreateShortcut方法创建快捷方式对象
IWshShortcut shortcut = (IWshShortcut)wshShell.CreateShortcut(
Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory) + "\\" + shortcutName + ".lnk");
// 设置快捷方式的属性
shortcut.TargetPath = targetPath;
shortcut.WorkingDirectory = workingDirectory;
shortcut.IconLocation = iconPath;
// 保存快捷方式
shortcut.Save();
}
```
阅读全文