Read contents of a local file into a variable in Rails

前端 未结 3 2101
闹比i
闹比i 2021-02-03 16:54

All I want to do is get all the content from a local file and store it in a variable. How?

File.read(@icon.full_filename).each {|l| r += l}

only giv

3条回答
  •  囚心锁ツ
    2021-02-03 17:10

    I think you should consider using IO.binread("/path/to/file") if you have a recent ruby interpreter (i.e. >= 1.9.2)

    You could find IO class documentation here http://www.ruby-doc.org/core-2.1.2/IO.html

提交回复
热议问题