vote up 8 vote down star
6

Yes, There's More Than One Way To Do It™, but there must be a canonical or most efficient or most concise way (the latter perhaps being at odds). I'll add answers I know of and see what percolates to the top.

flag
@dreeves If you don't want someone editing your post, I'd suggest not posting on Stack Overflow (The FAQ even states such). – George Stocker Dec 23 '08 at 20:58
@dreeves not to mention that is edit removes the ambiguity. There can only be one canonical way (hence the 'canon' part), but there can be more than one efficient way. There can only be one 'most' efficient way, however (hence the 'most' part). – George Stocker Dec 23 '08 at 21:03
Not true about "canonical". It means sanctioned, authoritative, standard. There can certainly be more than one of those. In fact, etymologically, a "canon" is a collection. In any case, thanks for the improvements to this question. I do gladly accept edits I agree with. – dreeves Dec 23 '08 at 22:04
To emphasize, I do want people to edit my posts. Very much so. I just feel that in the rare event of a disagreement, the original author should get the last word. – dreeves Dec 23 '08 at 22:17

13 Answers

vote up 43 vote down check

How about this:

use File::Slurp;
my $text = read_file($filename);
link|flag
What if you don't want this to die if the file doesn't exist? – dreeves Jul 1 at 22:09
@dreeves: my $text = eval { read_file $filename }; or see search.cpan.org/perldoc?File::Slurp#err_mode/… – Sinan Ünür Jul 9 at 16:50
The easiest way to prevent that from being likely is that simply first checking if the file exists... – Leon Timmermans Jul 13 at 22:08
vote up -2 vote down
# Takes the name of a file and returns its entire contents as a string.
sub getfile 
{
  my($filename) = @_;
  my($result);

  open(F, $filename) or die "OPENING $filename: $!\n";
  while(<F>) { $result .= $_; }
  close(F);

  return $result;
}
link|flag
I thought I had checked through all the answers that there was no while (<FILE>) {$result .= $_} answer before I posted, I can't imagine how I missed this one. Silly me. – Account deleted Oct 15 '08 at 22:35
Oh, I originally had it as while($line = <F>) { $result .= $line; } for some reason. So you're excused for missing it! :) – dreeves Oct 16 '08 at 2:42
vote up 16 vote down
open(my $f, $filename) or die "OPENING $filename: $!\n";
$string = do { local($/); <$f> };
close($f);
link|flag
1  
please use 3 parameter open() – szabgab Oct 18 '08 at 18:07
vote up 4 vote down
{
  open F, $filename or die "Can't read $filename: $!";
  local $/;  # enable slurp mode, locally.
  $file = <F>;
  close F;
}
link|flag
vote up -2 vote down

Candidate for the worst way to do it! (See comment.)

open(F, $filename) or die "OPENING $filename: $!\n";
@lines = <F>;
close(F);
$string = join('', @lines);
link|flag
This is my preferred method. – Paul Nathan Oct 15 '08 at 22:17
This is probably the most inefficient way I can think of, especially for large files. Now you have two copies of the same data and you have processed it twice just to load it into a scalar. – Robert Gamble Oct 15 '08 at 22:37
It's all situational. For a small file or a run-only-once quickie script, where "$string=cat $filename" is not available, this is perfectly reasonable. Inefficient yes! But that's not necessarily the only consideration. – mrree Nov 19 '08 at 3:56
vote up 3 vote down

See the summary of Perl6::Slurp which is incredibly flexible and generally does the right thing with very little effort.

link|flag
vote up 15 vote down

I like doing this with a do block in which I localize @ARGV so I can use the diamond operator to do the file magic for me.

 my $contents = do { local $/; local @ARGV = $file; <> };

If you need this to be a bit more robust, you can easily turn this into a subroutine.

If you need something really robust that handles all sorts of special cases, use File::Slurp. Even if you aren't going to use it, take a look at the source to see all the wacky situations it has to handle.

link|flag
1  
I'm lazy and write my $contents = do {local (@ARGV,$/) = $file; <>};, which is the exact same thing in less characters :) – ephemient Oct 16 '08 at 19:27
I'm wondering why local @ARGV = $file; <> would be any different than <$file>. – R. Bemrose Nov 21 '08 at 14:08
@Bemrose: because $file is not a filehandle. – brian d foy Nov 22 '08 at 11:12
vote up 5 vote down

Things to think about (especially when compared with other solutions):

  1. Lexical filehandles
  2. Reduce scope
  3. Reduce magic

So I get:

my $contents = do {
  local $/;
  open my $fh, $filename or die "Can't open $filename: $!";
  <$fh>
};

I'm not a big fan of magic <> except when actually using magic <>. Instead of faking it out, why not just use the open call directly? It's not much more work, and is explicit. (True magic <>, especially when handling "-", is far more work to perfectly emulate, but we aren't using it here anyway.)

link|flag
And in case it's not obvious to those following along at home, at the end of the curly block, $fh goes out of scope and the file handle is closed automatically. – dland Oct 16 '08 at 15:43
vote up 7 vote down

mmap (Memory mapping) of strings may be useful when you:

  • Have very large strings, that you don't want to load into memory
  • Want a blindly fast initialisation (you get gradual I/O on access)
  • Have random or lazy access to the string.
  • May want to update the string, but are only extending it or replacing characters:
#!/usr/bin/perl
use warnings; use strict;

use IO::File;
use Sys::Mmap;

sub sip {

    my $file_name = shift;
    my $fh;

    open ($fh, '+<', $file_name)
        or die "Unable to open $file_name: $!";

    my $str;

    mmap($str, 0, PROT_READ|PROT_WRITE, MAP_SHARED, $fh)
      or die "mmap failed: $!";

    return $str;
}

my $str = sip('/tmp/words');

print substr($str, 100,20);
link|flag
vote up 0 vote down

This is neither fast, nor platform independent, and really evil, but it's short (and I've seen this in Larry Wall's code ;-):

 my $contents = `cat $file`;

Kids, don't do that at home ;-).

link|flag
vote up 20 vote down

In writing File::Slurp (which is the best way), Uri Guttman did a lot of research in the many ways of slurping and which is most efficient. He wrote down his findings here and incorporated them info File::Slurp.

link|flag
vote up 1 vote down
use Path::Class;
file('/some/path')->slurp;
link|flag
vote up 0 vote down

Here is a nice comparison of the most popular ways to do it:

http://poundcomment.wordpress.com/2009/08/02/perl-read-entire-file/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.