I'm pretty new to Ruby and something has me entirely confused. I'm trying to create a new file and things don't seem to be working as I expect them too. Here's what I've tried:

File.new "out.txt"
File.open "out.txt"
File.new "out.txt","w"
File.open "out.txt","w"

According to everything I've read online all of those should work but every single one of them gives me this:

ERRNO::ENOENT: No such file or directory - out.txt

This happens from irb as well as a ruby file. What am I missing?

Thanks, Civatrix

link|improve this question
9  
The first two should not work, but the second two are synonymous and definitely should work. – Andrew Marshall Oct 27 '11 at 4:21
@Andrew: You're thinking that only the first two were tried? – mu is too short Oct 27 '11 at 4:23
@muistooshort That's the only conclusion I can reach. A permissions error would have thrown Errno::EACCES, not ENOENT. – Andrew Marshall Oct 27 '11 at 4:25
OK, now I feel stupid. The first two definitely do not work but the second two do. Not sure how I convinced my self that I had tried them. Sorry for wasting everyone's time. – Civatrix Oct 27 '11 at 4:32
feedback

3 Answers

Try

File.open("out.txt", "w") do |f|     
f.write(data_you_want_to_write)   
end

without using the

File.new "out.txt"

I hope this helps.

link|improve this answer
feedback
    File.open("out.txt", 'OPTION') {|f| f.write("write your stuff here") }

where your options are:

r - Read only. The file must exist.
w - Create an empty file for writing.
a - Append to a file.The file is created if it does not exist.
r+ - Open a file for update both reading and writing. The file must exist.
w+ - Create an empty file for both reading and writing.
a+ - Open a file for reading and appending. The file is created if it does not exist.

In your case, w is preferable.

OR you could have:

    outFile = File.new("out.txt", "w")
    ...
    outFile.puts("write your stuff here")
    ...
    outFile.close

Hope this helps.

link|improve this answer
This is my first answer on SOF! Glad to be part of the group :) – zanbri Oct 27 '11 at 13:48
feedback

Try using w+ as the write mode instead of just w:

File.open("out.txt", "w+") { |file| file.write("boo!") }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.