Win has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re: File::Find::Rule - error message with use of
by ikegami (Patriarch) on Nov 10, 2009 at 17:03 UTC

    Any explantions as to why?

    uh, as you've already determined, the path is too long.

    Windows doesn't support paths that long without using an extended interface Perl builtins and thus F::F::R don't use.

    A reply falls below the community's threshold of quality. You may see it by logging in.
Re: File::Find::Rule - error message with use of
by wfsp (Abbot) on Nov 10, 2009 at 18:02 UTC
    (extract)
    foreach (@subdirs){ # declared but not used my $directory_current = $_; # later my @files = $rule->in( @subdirs ); }
    What output are you expecting?