Mar 30, 2008 #1 biobrain MIS Jun 21, 2007 90 GB Dear All, i wish to count files with a specific extension i.e either .txt or .html in a given directory/folder . Is there any perl command?
Dear All, i wish to count files with a specific extension i.e either .txt or .html in a given directory/folder . Is there any perl command?
Mar 30, 2008 1 #2 KevinADC Technical User Jan 21, 2005 5,070 US No there is not, but you can use grep in a scalar context and it will give you a "count": Code: opendir(DIR, 'path/to/dir') or die; my $c = grep {/\.txt$/} readdir DIR; close DIR; print $c; ------------------------------------------ - Kevin, perl coder unexceptional! Upvote 0 Downvote
No there is not, but you can use grep in a scalar context and it will give you a "count": Code: opendir(DIR, 'path/to/dir') or die; my $c = grep {/\.txt$/} readdir DIR; close DIR; print $c; ------------------------------------------ - Kevin, perl coder unexceptional!
Mar 31, 2008 Thread starter #3 biobrain MIS Jun 21, 2007 90 GB Thanks I have made a little change It is working fine Code: use Cwd; $dir = cwd; opendir(DIR,"$dir") or die "$!"; $count = grep {/\.txt$/} readdir DIR; close DIR; print $count; Upvote 0 Downvote
Thanks I have made a little change It is working fine Code: use Cwd; $dir = cwd; opendir(DIR,"$dir") or die "$!"; $count = grep {/\.txt$/} readdir DIR; close DIR; print $count;