Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Files Counter 1

Status
Not open for further replies.

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?
 
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! [wiggle]
 
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;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top