Read File to List Alternate

From Erlang Community

Revision as of 16:06, 13 June 2007 by Defza (Talk | contribs)
(diff) ←Older revision | Current revision (diff) | Newer revision→ (diff)

[edit] Problem

You want to read the lines from a file and store them in a list, efficiently.

[edit] Discussion

I read somewhere a while back, possibly in Joe Armstrong's book that an alternative, efficient approach for converting the file contents to a list is to read the file into a binary, since that is a BIF routine, and then converting the binary to a list.

[edit] Solution

readfile(FileName) ->
    {ok, Binary} = file:read_file(FileName),
     Lines = string:tokens(erlang:binary_to_list(Binary), "\n").
Erlang/OTP Projects
Personal tools