I tried your suggestion, but still face the same error message..

===============

use File::Find; use strict; my $path = "."; # default path my $num = 10; # -n default number of users my $num_flag = 0; my @paths ; # array to hold paths my $num_paths = 0; my @subpaths ; my $size = 0; foreach my $argv (@ARGV) { # if it matches dash if ( $argv =~ m/^-/ ) { $num_flag++; if ($num_flag > 1) { print STDERR "Cannot have more than one entry for number o +f users\n"; usage_exit(1); } $num = substr($argv, 1); print ("num is, $num\n"); } # if it matches slash or is a path if ( $argv =~ m/^\// ) { push @paths, <$argv/*> unless @ARGV; print ("argv, $argv\n"); print ("num_path, $num_paths\n"); $num_paths++; } } # set default path if no path argument is supplied if ($num_paths == 0) { @paths = <$path/*>; print ("assigning default path\n"); } my $i=0; foreach $i (@paths) { print ("atpaths, \n"); } my %size; my @sorted; find (sub { $size{$File::Find::name} = -s if -f || -l; }, @paths );

In reply to Re: Re: File::Find complain about invalid top directory? by slok
in thread File::Find complain about invalid top directory? by slok

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.