I_love_perl has asked for the wisdom of the Perl Monks concerning the following question:
Hi,
I was trying to understand the write read mode of file handling in perl (+>). For the same I've written the below program.
1 #!/usr/bin/perl 2 use strict; 3 use warnings; 4 5 open my $FH , "+>", "input"; 6 7 my @contents = <$FH>; 8 print "@contents\n"; 9 10 print $FH "4\n"; 11 12 @contents = <$FH>; 13 print "@contents\n"; 14 close($FH); Before executing the perl script: Initial file ananda@ananda-desktop:~/Documents/perl_programs/try$ cat input 1 2 3 ananda@ananda-desktop:~/Documents/perl_programs/try$ perl test.pl ananda@ananda-desktop:~/Documents/perl_programs/try$ cat input 4 ananda@ananda-desktop:~/Documents/perl_programs/try$ After executing the perl script: Updated file
What I was expecting is print statement at line 13 in the code will produce an output of 4. But it did not happen that way. The list was empty and hence the output was blank.
My guess is the write operation into the file has written the data into primary memory and not yet into the secondary storage (Hard disk). The data will be written into secondary storage only when we close the file handle.
If the above assumption is right, then is there any way to store the modified data back to the secondary storage by any other means other than closing the filehandle.If the above assumption is wrong, can someone explain the reason for the above behaviour
Thanks,
Ananda
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Clarification on the write read mode of filehandling
by roboticus (Chancellor) on Oct 19, 2013 at 13:32 UTC | |
|
Re: Clarification on the write read mode of filehandling
by Corion (Patriarch) on Oct 19, 2013 at 13:32 UTC | |
by I_love_perl (Novice) on Oct 20, 2013 at 03:42 UTC | |
|
Re: Clarification on the write read mode of filehandling
by Laurent_R (Canon) on Oct 19, 2013 at 16:45 UTC |