欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#实现创建桌面快捷方式与添加网页到收藏夹的示例

程序员文章站 2023-12-31 21:42:34
今天来介绍一个小功能,就是把正在浏览的某网页添加到收藏夹中。完成这个功能主要是两步,首先要取得系统用户的收藏夹目录,第二是要根据获得页面地址在收藏夹目录创建一个快捷方式。具...

今天来介绍一个小功能,就是把正在浏览的某网页添加到收藏夹中。完成这个功能主要是两步,首先要取得系统用户的收藏夹目录,第二是要根据获得页面地址在收藏夹目录创建一个快捷方式。具体我们就一起来了解一下吧。

一、c#创建快捷方式
要创建快捷方式须引用iwshruntimelibrary.dll,引用方式为:对项目添加引用——>选择com组件——>选择"windows script host object model"确定,则添加成功!接下来就是编码:

/// <summary> 
/// 生成快捷方式 
/// </summary>   
/// <param name="targetpath">原目标位置</param> 
/// /// <param name="savepath">保存快捷方式的位置</param> 
protected void createshortcuts(string targetpath, string savepath,string savename) 
{ 
 iwshruntimelibrary.iwshshell shell_class = new iwshruntimelibrary.iwshshell_classclass(); 
 iwshruntimelibrary.iwshshortcut shortcut = null; 
 if (!directory.exists(targetpath)) 
  return; 
 if (!directory(savepath)) 
  directory.createdirectory(savepath); 
 try 
 { 
  shortcut = shell_class.createshortcut(savepath + @"/" + savename + ".lnk") as iwshruntimelibrary.iwshshortcut; 
  shortcut.targetpath = targetpath; 
  shortcut.save(); 
  messagebox.show("创佳快捷方式成功!"); 
 } 
 catch (exception ex) 
 { 
  messagebox.show("创佳快捷方式失败!"); 
 } 
} 

以上是c#里面调用相应的方法创建快捷方式的方法;接下来要讲的是c#里面将一个网页添加到收藏夹里面,其实将网页添加到收藏夹里的实质是将给定的网页生成一个快捷方式并放在收藏夹对应的电脑的物理文件夹里面即可。

二、将网页添加到收藏夹

首先,像第一步一样引用相应的dll

/// <summary> 
/// 添加收藏夹 
/// </summary> 
/// <param name="url">对应的网页的url</param> 
/// <param name="savename">保存的名称</param> 
/// <param name="foldername">文件夹名称</param> 
protected void addtofavorites(string url, string savename, string foldername) 
{ 
 system.httpwebrequest request = (system.net.httpwebrequest)system.net.webrequest.create(new uri(url)); 
 request.method = "get"; 
 request.timeout = 10000; 
 try 
 { 
  system.net.httpwebresponse response = (system.net.httpwebresponse)request.getresponse(); 
  if (response.statuscode == system.net.httpstatuscode.ok) 
  { 
   //获取当前用户的收藏夹的物理文件夹位置 
   string favoritespath = environment.getfolderpath(environment.specialfolder.favorites); 
   string savepath = favoritespath; 
   if (!string.isnullorempty(foldername)) 
   { 
    savepath += @"/" + foldername; 
    if (!directory.exists(savepath)) 
     directory.createdirectory(savepath); 
   } 
   iwshruntimelibrary.wshshell shell_class = new iwshruntimelibrary.wshshellclass(); 
   iwshruntimelibrary.iwshshortcut shortcut = null; 
   try 
   { 
    shortcut = shell_class.createshortcut(favoritespath + @"/" + savename + ".lnk") as iwshruntimelibrary.iwshshortcut; 
    shortcut.targetpath = url; 
    shortcut.save(); 
    messagebox.show("添加成功"); 
   } 
   catch (exception ex) 
   { 
    messagebox.show("添加失败"); 
   } 
  } 
  else 
  { 
   messagebox.show("请求失败"); 
  } 
 } 
 catch (exception ex) 
 { 
  messagebox.show(ex.message); 
 }  
} 

希望本文所述对你有所帮助,c#实现创建快捷方式与添加网页到收藏夹的示例内容就给大家介绍到这里了。希望大家继续关注我们的网站!想要学习c#可以继续关注本站。

上一篇:

下一篇: