因为要用到这方面的东东,所以小结了一下,如下: /// /// 创建文件的快捷方式(虚拟路径) /// /// 目标位置 /// 目标 private void CreateShortCut(string Path,string TargetPath) { if(System.IO.File.Exists(@TargetPath)) { Path += @".lnk"; IWshRuntimeLibrary.WshShell shell = new IWshRuntimeLibrary.WshShellClass(); IWshRuntimeLibrary.IWshShortcut shortcut = (IWshRuntim...
[ 查看全文 ]