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


in reply to Re: greater efficiency required (ls, glob, or readdir?)
in thread greater efficiency required (ls, glob, or readdir?)

Thanks, I got your version to work with very few changes.
my $dir = '/path/to/data/directory'; my %hash; opendir my $DH, $dir or die "cannot open '$dir' $!"; while (my $file = readdir $DH ) { next if $file =~ /~$/; next if -d $file; open my $FH, "<", "$dir/$file" or die "Cannot open '$dir/$file +' $!"; while ( my $line = <$FH> ) { next if /^#/ || !length($line); my ($key, @values ) = split(/\t/, $line); $hash{ $file }{ $key } = \@values; } }
It even seems to work quite a bit faster than the ls/cat combo.

Replies are listed 'Best First'.
Re^3: greater efficiency required (ls, glob, or readdir?)
by jwkrahn (Abbot) on Aug 27, 2008 at 21:03 UTC

    You need to change: next if -d $file; to next if -d "$dir/$file";

    You need to change: next if /^#/ || !length($line); to next if $line =~ /^#/ || !length($line);