Skip to content

Instantly share code, notes, and snippets.

@niahoo
niahoo / file_utils.erl
Created August 21, 2012 14:22 — forked from mrinalwadhwa/file_utils.erl
Erlang: list all the files in a directory and recursively in all its sub directories
-module(file_utils).
-export([recursively_list_dir/1,
recursively_list_dir/2]).
% @type name() = string() | atom() | binary().
-type name() :: string() | atom() | binary().