erlang遍历目录

{ok, Cwd} = file:get_cwd().
Filelist = filelib:fold_files( Cwd, ".*", true, fun(File, Acc) -> [File|Acc] end, []).
io:format("~p", [Filelist]).
原文地址:https://www.cnblogs.com/ziyouchutuwenwu/p/8876306.html