The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

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

SYNOPSIS

  use Win32::IEFavorites;

  my @items = Win32::IEFavorites->find;

  foreach my $item (@items) {
    print $item->url,"\n";
    print $item->modified->ymd,"\n";
  }

METHODS

new

Creates an object.

path

Returns the path of the shortcut.

url

Returns the url of the shortcut.

modified

Returns a DateTime object for the modified time of the shortcut.

iconfile

Returns the icon file of the shortcut.

iconindex

Returns the icon index of the shortcut.

AUTHOR

Kenichi Ishigaki, <ishigaki@cpan.org>

COPYRIGHT AND LICENSE

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.