Read File to List Alternate
From Erlang Community
[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").
|

Digg It
Del.icio.us
Reddit
Facebook
Stumble Upon
Technorati

