Reg IO class

Hi,
   Should we close the file after reading it?

Please see the code below...

  data = IO.readlines("test.txt","r")
  diskfile = File.open("test.xml","w+")
  data.each do |line|
     line.chomp!
     diskfile.puts(line) if line.length>0
  end

It is working fine, even without closing the file(diskfile.close). Can
someone suggest me. Does the file close automatically or not?

Thanks in advance

Abirami

···

--
Posted via http://www.ruby-forum.com/.

Hi,
   Should we close the file after reading it?

Yes, of course.

Please see the code below...

  data = IO.readlines("test.txt","r")
  diskfile = File.open("test.xml","w+")
  data.each do |line|
     line.chomp!
     diskfile.puts(line) if line.length>0
  end

It is working fine, even without closing the file(diskfile.close). Can
someone suggest me. Does the file close automatically or not?

In the first line yes, in the second chunk, no. This can be easily fixed by using the block form of File.open.

Cheers

  robert

···

On 23.03.2009 06:58, Abirami Selvam wrote:

--
remember.guy do |as, often| as.you_can - without end

Robert Klemme wrote:

···

On 23.03.2009 06:58, Abirami Selvam wrote:

Hi,
   Should we close the file after reading it?

Yes, of course.

It is working fine, even without closing the file(diskfile.close). Can
someone suggest me. Does the file close automatically or not?

In the first line yes, in the second chunk, no. This can be easily
fixed by using the block form of File.open.

Cheers

  robert

Thank you for your qucik reply
--
Posted via http://www.ruby-forum.com/\.