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

I am using -f to scan a windows drive to get the count of file scanned through the following code

$current = $File::Find::name; if(-f $current ) { filesScanned++; }

the counter in above code filesScanned does not increment for a few files. Can anyone tell me y?

Replies are listed 'Best First'.
Re: -f command problem
by moritz (Cardinal) on Aug 24, 2012 at 12:00 UTC
Re: -f command problem
by Anonymous Monk on Aug 24, 2012 at 12:01 UTC
Re: -f command problem
by nemesdani (Friar) on Aug 24, 2012 at 11:59 UTC
    What kind of files are those few? Try to print the filenames and the counter as well.


    I'm too lazy to be proud of being impatient.