如何访问.URL文件中的URL和书签标题?

时间:2011-06-22 02:05:11

标签: c# .net internet-explorer url favorites

我使用的是.NET 2.0 Visual Studio 2005 C#。

以下代码从包含已添加书签的.url文件的目录中获取IE收藏夹(书签)的文件名

示例

../用户/收藏夹/ blah.url

但我真正想要的是该文件中的书签网址。

检查文件属性时,在Web文档选项卡中显示文件名和URL。

如何从C#访问它?

CODE

 //the code below just get String like "..../users/favorites/blah.url"
 //call the method with the folder path: 
 //GetFavoriteFiles(Environment.GetFolderPath(Environment.SpecialFolder.Favorites));


private List<String> favFiles = new List<String>();

private void GetFavoriteFiles(String folder)
{
    String[] favs = Directory.GetFiles(folder);
    favFiles.AddRange(favs);
    String[] folders = Directory.GetDirectories(folder);

    if(folders != null)
    {
       foreach(String s in folders)
       {
          GetFavoriteFiles(s);
       }
    }
}

2 个答案:

答案 0 :(得分:5)

我在Notepad ++中打开了.url这就是我找到的。注意,这是在IE8中生成的。 This page详细介绍了.url(互联网快捷方式)文件的格式。

[DEFAULT]
BASEURL=http://www.google.com.au/
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
[InternetShortcut]
URL=http://www.google.com.au/
IDList=
IconFile=http://www.google.com.au/favicon.ico
IconIndex=1

您应该能够使用基本的StreamReader IO轻松解析此问题。

答案 1 :(得分:5)

.url文件的当前格式为not set in stone,可能会在任何操作系统更新中发生变化。解析这些文件的正确方法是使用IUniformResourceLocatorIPropertyStorage CLSID_InternetShortcut COM coclass。我刚刚将该功能添加到TvGameLauncher,您可以从InternetShortcut folder(Apache 2.0许可证)中获取代码。

样本用法:

var shortcut = new InternetShortcutManaged(@"MyShortcut.url");

Console.WriteLine("URL: " + shortcut.Url);
Console.WriteLine("Working dir: " + shortcut.WorkingDir);
Console.WriteLine("Icon file: " + shortcut.IconFile);
Console.WriteLine("Icon index: " + shortcut.IconIndex);
Console.WriteLine("Name: " + shortcut.Name);
Console.WriteLine("Description: " + shortcut.Description);
Console.WriteLine("Comment: " + shortcut.Comment);