非Com形式创建桌面快捷方式

C# 2022-02-11 14:25:36

调用方法:

Shortcut sc = new Shortcut();

sc.Path = "目标文件地址";

sc.Arguments = "启动参数";

sc.WorkingDirectory = "启动文件的文件夹";

sc.Description = "描述";

sc.Save("这个快捷方式保存在哪");