require ‘open-uri’
open(“file:c://test/test.txt”) {|f|
f.each_line {|line| p line}
}
Can Ruby uri class open up a file schema?
Make a test without a drive letter. IOW try a simpler case first. Then,
if
this succeeds, try this syntax:
“file:///C:/test/test.txt”
URI paths involving drive letters must be handled very carefully. And
IMHO,
drive letters should be banished from the world of computing as soon as
possible.
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.