
Win32::IEFavorites::Item - Internet Explorer's Favorites item

use Win32::IEFavorites;
my @items = Win32::IEFavorites->find;
foreach my $item (@items) {
print $item->url,"\n";
print $item->modified->ymd,"\n";
}

Creates an object.
Returns the path of the shortcut.
Returns the url of the shortcut.
Returns a DateTime object for the modified time of the shortcut.
Returns the icon file of the shortcut.
Returns the icon index of the shortcut.

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.