Win32::IEFavorites - handles Internet Explorer's Favorites |
Win32::IEFavorites - handles Internet Explorer's Favorites
use Win32::IEFavorites;
my @items = Win32::IEFavorites->find('*del.icio.us'); foreach my $item (@items) { print $item->url,"\n"; }
This module is to handle Internet Explorer's Favorites items (Internet shortcuts). For now it only can grab shortcuts and provide their properties (url, modified, iconfile, iconindex). You may want to use this with some aggregator like Plagger.
Returns your IE's Favorites folder.
Returns your IE's Favorites as an array of ::Item objects. Each object has url, modified, iconfile, iconindex properties. Also accepts the File::Find::Rule manpage's matching rules for ->name(). The default rule is '*.url' (matches every favorite items).
You *can* use shiftjis characters for matching rules as well, though you might want to wrap it with quotemeta (or qr/\Q ... \E/) to avoid the notorious 0x5c (\) problem.
Kenichi Ishigaki, <ishigaki@cpan.org>
Copyright (C) 2006 by Kenichi Ishigaki
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Win32::IEFavorites - handles Internet Explorer's Favorites |