View Problem

Process each file in a directory recursively

ExpandDiskEdit
erlang
filelib:fold_files(Directory, ".*", true, fun (FileOrDirPath, Acc) -> Worker(FileOrDirPath), Acc end, []).
ExpandDiskEdit
erlang
process_dir(Directory, Worker).

Submit a new solution for erlang
There are 14 other solutions in additional languages (clojure, cpp, fantom, fsharp ...)