码迷,mamicode.com
首页 > Windows程序 > 详细

2019-11-29-C#-通过编程的方法在桌面创建回收站快捷方式

时间:2019-12-21 10:04:52      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:folders   creat   lin   编程   https   blog   lob   文件   title   

原文:2019-11-29-C#-通过编程的方法在桌面创建回收站快捷方式

title author date CreateTime categories
C# 通过编程的方法在桌面创建回收站快捷方式
lindexi
2019-11-29 08:30:35 +0800
2019-3-19 9:12:4 +0800
C#

基本所有的桌面都会存在回收站快捷方式,如果想要多创建几个快捷方式,点开就是回收站,请看本文的方法

在引用 Windows Script Host Object Model 这个 COM 方法之后可以使用下面代码在桌面创建 Recycle Bin.lnk 快捷方式,这个快捷方式可以打开回收站

            object shDesktop = "Desktop";
            WshShell shell = new WshShell();
            string shortcutAddress = (string) shell.SpecialFolders.Item(ref shDesktop) + @"\Recycle Bin.lnk";
            IWshShortcut shortcut = (IWshShortcut) shell.CreateShortcut(shortcutAddress);
            shortcut.Description = "New shortcut for Recycle Bin";
            shortcut.Hotkey = "Ctrl+Shift+N";
            shortcut.IconLocation = @"C:\WINDOWS\System32\imageres.dll";
            shortcut.TargetPath = "::{645ff040-5081-101b-9f08-00aa002f954e}";
            shortcut.Save();

参见 使用 C# 代码创建快捷方式文件 - walterlv

C# 如何引用 WshShell 类

c# - Programmatically create a shortcut to the recycle bin or other special folders - Stack Overflow

2019-11-29-C#-通过编程的方法在桌面创建回收站快捷方式

标签:folders   creat   lin   编程   https   blog   lob   文件   title   

原文地址:https://www.cnblogs.com/lonelyxmas/p/12075832.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!