How to append some data at the beginning of a file

U

Uday Thokala

Hi,

I am newbie to Ruby so please spare me if the question looks silly. My
question is how to append data at the beginning of a file?

Suppose I have a file named test.rb which contains some text, say
"This is first line
This is second line"

Now if I wanted to append some data at the beginning of the file, lets
say
"This line has to be appended at the beginning of the file"

My program

filename = File.open("test","a") do |f|
f.puts "This line should appear at the top of each file";
f.close();
end

is appending at the end of the file. So the output is:

"This is first line
This is second line
This line has to be appended at the beginning of the file"

I searched the forums and found that if I use IO:seek and then try to
append data to the existing file the earlier content which are in the
first lines will get replaced. Is there any easy solution so that I can
get a final output like:

"This line has to be appended at the beginning of the file
This is first line
This is second line"
 
R

Ronald Fischer

I am newbie to Ruby so please spare me if the question looks silly. My
question is how to append data at the beginning of a file?

This is not so much a Ruby question, since nearly no operating system
directly
allows appending data to the beginning of a file. The general solution
is to create a new file, putting there the data in the right order,
delete
the old file and rename the new file to the name of the old one.

Renaming a file is done like this:

File.rename("oldname","newname")=20

This raises the exception SystemCallError, if renaming fails.

HTH

Ronald
--=20
Ronald Fischer <[email protected]>
Phone: +49-89-452133-162
 
U

Uday Thokala

Ronald said:
This is not so much a Ruby question, since nearly no operating system
directly
allows appending data to the beginning of a file.

Thanks Ronald for your comments. I am wondering may be ruby got some way
around it.
The general solution
is to create a new file, putting there the data in the right order,
delete
the old file and rename the new file to the name of the old one.

Renaming a file is done like this:

File.rename("oldname","newname")

Yeah I implemented the above mentioned solution and it's working fine.
The code is

newfile = File.new("test1","w")
newfile.puts "This line should appear at the top of each file";

oldfile = File.open("test", "r+")
oldfile.each_line { |line| newfile.puts line}

oldfile.close();
newfile.close();

File.delete("test");
File.rename("test1", "test");

Thanks,
Uday.
 
R

Ronald Fischer

Thanks Ronald for your comments. I am wondering may be ruby=20
got some way=20
around it.

It could, but I think it just happens too rare that someone
wants to do this. In more than 2 decades of programming, I
had this need only two or three times, for example.
newfile =3D File.new("test1","w")
newfile.puts "This line should appear at the top of each file";
=20
oldfile =3D File.open("test", "r+")
oldfile.each_line { |line| newfile.puts line}
oldfile.close();

or simply

newfile.puts(File.read("test"))

so you don't need the Ruby variable 'oldfile'.
newfile.close();
=20
File.delete("test");
File.rename("test1", "test");


--=20
Ronald Fischer <[email protected]>
Phone: +49-89-452133-162
 
J

Jano Svitok

It could, but I think it just happens too rare that someone
wants to do this. In more than 2 decades of programming, I
had this need only two or three times, for example.


or simply

newfile.puts(File.read("test"))

so you don't need the Ruby variable 'oldfile'.

1. it's better to use block form of File.open:

File.open("test1","w") do |newfile|
newfile.puts "This line should appear at the top of each file"

File.open("test", "r+") do |oldfile|
oldfile.each_line { |line| newfile.puts line}
end
end

File.delete("test");
File.rename("test1", "test");

The difference is that in case of an exception the file is closed
automatically. Otherwise you have to wait for garbage collector. It's
a good habit to get used to this style.

2. newfile.puts(File.read("test")) will read the entire file into
memory. Don't do this on large files - use the original way (or even
better, loop over the file with File#read(size)). For small files,
this read() is better.

3. newfile.puts(File.read("test")) will put an extra newline at the
end. Use either
newfile << File.read("test")
or
newfile.write(File.read("test"))
 
R

Robert Klemme

2007/8/24 said:
Thanks Ronald for your comments. I am wondering may be ruby got some way
around it.


Yeah I implemented the above mentioned solution and it's working fine.
The code is

newfile = File.new("test1","w")
newfile.puts "This line should appear at the top of each file";

oldfile = File.open("test", "r+")
oldfile.each_line { |line| newfile.puts line}

oldfile.close();
newfile.close();

File.delete("test");
File.rename("test1", "test");

Just a few remarks: better return to your old habit and use the block
form of File.open (btw, you do not need to close the file, File#open
takes care of that when the block is left - even in case of an
exception).

You don't need to terminate lines with ";".

Also, you can use variables to make your life easier:

file = "test"
tmp = file + "~"

File.open(tmp, "w") do |out|
out.puts "This line should appear at the top of each file"

File.foreach file do |line|
out.puts line
end
end

File.delete file
File.rename tmp, file

Kind regards

robert
 
R

Ronald Fischer

2. newfile.puts(File.read("test")) will read the entire file into
memory. Don't do this on large files - use the original way (or even
better, loop over the file with File#read(size)). For small files,
this read() is better.

Good point! (Only that *prepending* data to a file which is so big that
it would be a memory hog, is probably a nightmare anyway.
3. newfile.puts(File.read("test")) will put an extra newline at the
end. Use either
newfile << File.read("test")
or
newfile.write(File.read("test"))

Right, I overlooked this! Thanks for pointing this out.

Ronald
 
F

Florian Aßmann

My solution for this question would be monkey patching the File class:

require 'tempfile'

class File
def self.prepend(path, string)
Tempfile.open File.basename(path) do |tempfile|
# shift string to tempfile
tempfile << string

File.open(path, 'r+') do |file|
# append original data to tempfile
tempfile << file.read
# reset file positions
file.pos = tempfile.pos = 0
# copy tempfile back to original file
file << tempfile.read
end
end
end
end

Regards
Florian
 
T

Tom Reilly

Here is a small example to write something at the beginning of a file
which works fine so long as the length of this item doesn't change.

#-----------------------------------------------
#timer to track time I work on medicine
#version 1.3 8/12/07
# sleep added
# total time computed and displayed

rw = "r+"
$stdout.sync = true
begin
fo = File.new("time_study.txt",rw)
rescue
rw = "w+"
retry
end
old_chapter = fo.read(3)
if old_chapter == nil
fo.write("00\t *** \t \n")
p "Start a new file"
else
puts old_chapter
end



fo.seek(0,IO::SEEK_SET)
time_start = Time.now

prev_chapter = fo.read(2)
puts "Start at chapter #{prev_chapter}"
puts "Enter chapter to start"
fo.seek(0,IO::SEEK_SET)
chapter = gets.chomp
fo.write("#{chapter}")
time_end = Time.now
fo.seek(0,IO::SEEK_END)
fo.write("#{time_start.to_i} #{time_end.to_i} #{(time_end -
time_start)}\n")
fo.seek(0,IO::SEEK_SET)
total_time = 0.0
fo.each do |x|
xa = x.split
total_time += xa[2].to_f
end
puts "Total time Hours = #{total_time / 3600.0}"
sleep 10
fo.close
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,581
Members
45,056
Latest member
GlycogenSupporthealth

Latest Threads

Top