http://qs1969.pair.com?node_id=169054


in reply to Re: Using stat()
in thread Using stat() to get the total size of files in a folder

Sam has it right. File::Find is very fast and efficient. You can see a good example on my website

Neil Watson
watson-wilson.ca

Replies are listed 'Best First'.
Re: Re: Re: Using stat()
by joshua (Pilgrim) on May 29, 2002 at 17:24 UTC
    Ok, I've decided to use File::Find. When I call the find() function, I get this error.Insecure $ENV{PATH} while running with -T switch at /usr/lib/perl5/5.6.1/Cwd.pm line 92.So, I decided to add $ENV{PATH} = '/bin:/usr/bin'; to my script. Now, I'm getting this error.Insecure dependency in chdir while running with -T switch at /usr/lib/perl5/5.6.1/File/Find.pm line 467.I noticed in Neil's script, It didn't have the -T switch. Will File::Find just not run in taint mode?

    Thanks.
    Joshua