http://qs321.pair.com?node_id=688603


in reply to Re: Ranking files, largest to smallest
in thread Ranking files, largest to smallest

example: blackdeath.total and dandelion.total

The Text File: Black Death #check the space Jesse Gunn The Crimson Shadow Ariana London Legion Scorpio Greg Manix

I doubt that in the file where you are reading the file names is having space and in the file names which you have given in example doesn't have space. So you check that.

Also In the below code, first line is not necessary.
change

my @lines = <FILE>; chomp (@lines = <FILE>);
into

chomp (@lines = <FILE>);

Prasad