I think the best solution here is to hoik the absolute() method from
IO::All::Filesys to IO::All. Since there's an is_absolute() method at
that level, it seems fair to have the absolute() there, too. I've done
this locally, not seen any issues so far.
On Thu Dec 18 23:03:09 2008, PJFL wrote:
Show quoted text> #!/usr/bin/perl
>
> use strict;
> use warnings;
> use IO::All;
>
> my $path;
> my $io = io( q(/dev) );
>
> print $path->name."\n" while ($path = $io->next());
>
> This fails with the error shown in the subject string