File.new error

Hi Forum,

I’m trying to create a file but I’m getting an error and can’t find the
problem:


aFile = File.new(“rubytestfile”)

puts "hello"

aFile.close

I get this error. I’m working on Mac OS X:

Errno::ENOENT: No such file or directory - rubytestfile

thanks for any help!

Kai V. wrote:

aFile.close

I get this error. I’m working on Mac OS X:

Errno::ENOENT: No such file or directory - rubytestfile

thanks for any help!

Try

aFile = File.new(“rubytestfile”, “w”)

If you don’t specify the 2nd argument (the open mode) Ruby assumes you
want to open the file for reading only. If the file doesn’t exist, you
can’t read it.

Timothy H. wrote:

Try

aFile = File.new(“rubytestfile”, “w”)

If you don’t specify the 2nd argument (the open mode) Ruby assumes you
want to open the file for reading only. If the file doesn’t exist, you
can’t read it.

And please use the block form from the start, i.e.

File.open(“rubytestfile”, “w”) do |aFile|
aFile.puts “hello”
end

Btw, the original script wrote to stdout and not to the file.

Kind regards

robert

Could this method be extended to acept input from stdin? Something
similar to:-

def testwrite
File.open(“testfile”, “w”) { |file| file.gets “test” }
end
testwrite

The intention is to read lines from stdnin and put them into the file…

On Wed, 4 Jan 2006 22:03:03 +0900 Kai V. [email protected]

Hi,

In message “Re: File.new error”
on Thu, 2 Feb 2006 22:33:35 +0900, John M. [email protected]
writes:

|Could this method be extended to acept input from stdin? Something
|similar to:-
|
|def testwrite
| File.open(“testfile”, “w”) { |file| file.gets “test” }
|end
|testwrite
|
|The intention is to read lines from stdnin and put them into the file…

require ‘fileutils’

def testwrite
File.open(“testfile”, “w”) {|file|
FileUtils.copy_stream(STDIN, file)
}
end