Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: read and write to the same file

by archen (Pilgrim)
on Oct 26, 2004 at 14:10 UTC ( [id://402597]=note: print w/replies, xml ) Need Help??


in reply to read and write to the same file

Just to elaborate a bit more on what tachyon said: When you open a file for write you use ">file". This will destroy the contents of "file" if it already existed and you will be able to write to the file. ">" still works the same way even if you add read support, and I'm pretty sure the perl documentation warns about what you ended up doing ("+>"): opening the file for read and write, but destroying the contents before you got a chance to read.

What you want is "+<". You can now read and write to the file, but you will want to familiarize yourself with the seek command, which will allow you to write to different spots in the file.

Also keep in mind that the file does not truncate itself. For instance if you have a file that contains "oooo", you seek to the beginning of the file and write "XXX", your file will contain "XXXo".

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://402597]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (1)
As of 2024-04-24 17:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found