C#操作快捷方式(獲取快捷方式屬性、創建快捷方式)

第一步  創建一個項目

無需廢話,跳過。

第二步  引用COM組件

右鍵“引用”,“添加引用”,選擇“COM組件”,找到“Windows Script Host Object Model”,然後確定。

第三步  編寫創建快捷方式的代碼

複製代碼

 1 // 聲明操作對象
 2 IWshRuntimeLibrary.WshShell shell = new IWshRuntimeLibrary.WshShellClass();
 3 // 創建一個快捷方式
 4 IWshRuntimeLibrary.IWshShortcut shortcut = (IWshRuntimeLibrary.IWshShortcut)shell.CreateShortcut("c:\\yeaicc.lnk");
 5 // 關聯的程序
 6 shortcut.TargetPath = "notepad.exe";
 7 // 參數
 8 shortcut.Arguments = "c:\\yeaicc.txt";
 9 // 快捷方式描述,鼠標放到快捷方式上會顯示出來哦
10 shortcut.Description = "我的快捷方式--yeaicc";
11 // 全局熱鍵
12 shortcut.Hotkey = "CTRL+SHIFT+N";
13 // 設置快捷方式的圖標,這裏是取程序圖標,如果希望指定一個ico文件,那麼請寫路徑。
14 shortcut.IconLocation = "notepad.exe, 0";
15 // 保存,創建就成功了。
16 shortcut.Save();

複製代碼

第四步  讀取快捷方式屬性

1 IWshRuntimeLibrary.WshShell shell = new IWshRuntimeLibrary.WshShellClass();
2 IWshRuntimeLibrary.IWshShortcut shortcut = (IWshRuntimeLibrary.IWshShortcut)shell.CreateShortcut("c:\\yeaicc.lnk");
3 // 親,根據剛剛創建時的代碼,你想獲取什麼屬性?
4 MessageBox.Show(ws.Description);
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章