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??