What's the best way to open and read a file in Perl?
What's the best way to open and read a file in Perl?
Please note - I am not looking for the "right" way to open/read a file, or the way I should open/read a file every single time. I am just interested to find out what way most people use, and maybe learn a few new methods at the same time :)*
A very common block of code in my Perl programs is opening a file and reading or writing to it. I have seen so many ways of doing this, and my style on performing this task has changed over the years a few times. I'm just wondering what the best (if there is a best way) method is to do this?
I used to open a file like this:
my $input_file = "/path/to/my/file"; open INPUT_FILE, "<$input_file" || die "Can't open $input_file: $!\n";
But I think that has problems with error trapping.
Adding a parenthesis seems to fix the error trapping:
open (INPUT_FILE, "<$input_file") || die "Can't open $input_file: $!\n";
I know you can also assign a filehandle to a variable, so instead of using "INPUT_FILE" like I did above, I could have used $input_filehandle - is that way better?
For reading a file, if it is small, is there anything wrong with globbing, like this?
my @array = ;
or
my $file_contents = join( "\n", );
or should you always loop through, like this:
my @array; while () { push(@array, $_); }
I know there are so many ways to accomplish things in perl, I'm just wondering if there are preferred/standard methods of opening and reading in a file?
Answer by JSB???? for What's the best way to open and read a file in Perl?
There are no universal standards, but there are reasons to prefer one or another. My preferred form is this:
open( my $input_fh, "<", $input_file ) || die "Can't open $input_file: $!";
The reasons are:
- You report errors immediately. (Replace "die" with "warn" if that's what you want.)
- Your filehandle is now reference-counted, so once you're not using it it will be automatically closed. If you use the global name INPUT_FILEHANDLE, then you have to close the file manually or it will stay open until the program exits.
- The read-mode indicator "<" is separated from the $input_file, increasing readability.
The following is great if the file is small and you know you want all lines:
my @lines = <$input_fh>;
You can even do this, if you need to process all lines as a single string:
my $text = join('', <$input_fh>);
For long files you will want to iterate over lines with while, or use read.
Answer by converter42 for What's the best way to open and read a file in Perl?
The perlopentut man page covers most of this issue pretty well.
Answer by Kent Fredric for What's the best way to open and read a file in Perl?
If you want the entire file as a single string, there's no need to iterate through it.
use strict; use warnings; use Carp; use English qw( -no_match_vars ); my $data = q{}; { local $RS = undef; # This makes it just read the whole thing, my $fh; croak "Can't open $input_file: $!\n" if not open $fh, '<', $input_file; $data = <$fh>; croak 'Some Error During Close :/ ' if not close $fh; }
The above satisfies perlcritic --brutal
, which is a good way to test for 'best practices' :). $input_file
is still undefined here, but the rest is kosher.
Answer by John for What's the best way to open and read a file in Perl?
If these programs are just for your productivity, whatever works! Build in as much error handling as you think you need.
Reading in a whole file if it's large may not be the best way long-term to do things, so you may want to process lines as they come in rather than load them up in an array.
One tip I got from one of the chapters in The Pragmatic Programmer (Hunt & Thomas) is that you might want to have the script save a backup of the file for you before it goes to work slicing and dicing.
Answer by Dave Rolsky for What's the best way to open and read a file in Perl?
If your files are small enough that reading the whole thing into memory is feasible, use File::Slurp. It reads and writes full files with a very simple API, plus it does all the error checking so you don't have to.
Answer by brian d foy for What's the best way to open and read a file in Perl?
There is no best way to open and read a file. It's the wrong question to ask. What's in the file? How much data do you need at any point? Do you need all of the data at once? What do you need to do with the data? You need to figure those out before you think about how you need to open and read the file.
Is anything that you are doing now causing you problems? If not, don't you have better problems to solve? :)
Most of your question is merely syntax, and that's all answered in the Perl documentation (especially (perlopentut). You might also like to pick up Learning Perl, which answers most of the problems you have in your question.
Good luck, :)
Answer by Axeman for What's the best way to open and read a file in Perl?
For OO, I like:
use FileHandle; ... my $handle = FileHandle->new( "< $file_to_read" ); croak( "Could not open '$file_to_read'" ) unless $handle; ... my $line1 = <$handle>; my $line2 = $handle->getline; my @lines = $handle->getlines; $handle->close;
Answer by frosty for What's the best way to open and read a file in Perl?
It's true that there are as many best ways to open a file in Perl as there are
$files_in_the_known_universe * $perl_programmers
...but it's still interesting to see who usually does it which way. My preferred form of slurping (reading the whole file at once) is:
use strict; use warnings; use IO::File; my $file = shift @ARGV or die "what file?"; my $fh = IO::File->new( $file, '<' ) or die "$file: $!"; my $data = do { local $/; <$fh> }; $fh->close(); # If you didn't just run out of memory, you have: printf "%d characters (possibly bytes)\n", length($data);
And when going line-by-line:
my $fh = IO::File->new( $file, '<' ) or die "$file: $!"; while ( my $line = <$fh> ) { print "Better than cat: $line"; } $fh->close();
Caveat lector of course: these are just the approaches I've committed to muscle memory for everyday work, and they may be radically unsuited to the problem you're trying to solve.
Answer by Svante for What's the best way to open and read a file in Perl?
I once used the
open (FILEIN, "<", $inputfile) or die "..."; my @FileContents = ; close FILEIN;
boilerplate regularly. Nowadays, I use File::Slurp
for small files that I want to hold completely in memory, and Tie::File
for big files that I want to scalably address and/or files that I want to change in place.
Answer by pjf for What's the best way to open and read a file in Perl?
Having to write 'or die' everywhere drives me nuts. My preferred way to open a file looks like this:
use autodie; open(my $image_fh, '<', $filename);
While that's very little typing, there are a lot of important things to note which are going on:
We're using the autodie pragma, which means that all of Perl's built-ins will throw an exception if something goes wrong. It eliminates the need for writing
or die ...
in your code, it produces friendly, human-readable error messages, and has lexical scope. It's available from the CPAN.We're using the three-argument version of open. It means that even if we have a funny filename containing characters such as
<
,>
or|
, perl will still do the right thing. In my Perl Security tutorial at OSCON I showed a number of ways to get 2-argument open to misbehave. The notes for this tutorial are available for free download from Perl Training Australia.We're using a scalar filehandle. This means that we're not going to be coincidently closing someone else's filehandle of the same name, which can happen if we use package filehandles. It also means
strict
can spot typos, and that our filehandle will be cleaned up automatically if it goes out of scope.We're using a meaningful filehandle, in this case it looks like we're going to write to an image.
The filehandle ends with
_fh
. If we see us using it like a regular scalar, then we know that it's probably a mistake.
All the best,
Paul
Answer by for What's the best way to open and read a file in Perl?
Read the entire file $file into variable $text with a single line
$text = do {local(@ARGV, $/) = $file ; <>};
or as a function
$text = load_file($file); sub load_file {local(@ARGV, $/) = @_; <>}
Answer by ysth for What's the best way to open and read a file in Perl?
Damian Conway does it this way:
$data = readline!open(!((*{!$_},$/)=\$_)) for "filename";
But I don't recommend that to you.
Answer by Ape-inago for What's the best way to open and read a file in Perl?
The ||
operator has higher precedence, so it is evaluated first before sending the result to "open"... In the code you've mentioned, use the "or" operator instead, and you wouldn't have that problem.
open INPUT_FILE, "<$input_file" or die "Can't open $input_file: $!\n";
Fatal error: Call to a member function getElementsByTagName() on a non-object in D:\XAMPP INSTALLASTION\xampp\htdocs\endunpratama9i\www-stackoverflow-info-proses.php on line 72
0 comments:
Post a Comment