Is there some trick to writing to an outfile in windows using ruby? I'm using the following:

f = File.new(filename, 'r+')
f.puts detailed_html
f.close

And I get the error:

No such file or directory.

This alternative gives the same error:

f = File.open(filename, 'r+')

I am 1000% positive that filename is a value file path, the files don't exist yet; i want the script to create them.

Note: If I create the files -- with the proper names -- manually prior to running the script, it works. How do you get ruby to either overwrite an existing file, or create the file if it doesn't exist on windows??

link|improve this question

See stackoverflow.com/q/1581674/10396 for a good explanation of 'r+' vs 'w+' – AShelly Jan 20 at 19:56
feedback

1 Answer

Try this one to be extra sure to overwrite existing file or create a new one.

f = File.new(filename, File::CREAT|File::TRUNC|File::RDWR)

this should do just about the same

f = File.new(filename, 'w+')
link|improve this answer
ugh, they should mention that in r+ (ruby-doc.org/core-1.9.3/IO.html), i didn't read down to w+ because i thought i'd found it – NMoney Jan 20 at 19:38
@NMoney: since you've found the answer yourself, this question should be deleted probably. – Sergio Tulentsev Jan 20 at 19:40
No need to delete it, just accept the right answer so other searchers can find it here. – AShelly Jan 20 at 19:55
feedback

Your Answer

 
or
required, but never shown

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