此方法用于列出特定目錄的內(nèi)容。
list_dir(directory)
directory ?需要列出其內(nèi)容的目錄。
包含目錄中文件名的項(xiàng)目列表。
-module(helloworld). -export([start/0]). start() -> io:fwrite("~p~n",[file:list_dir(".")]).
根據(jù)當(dāng)前工作目錄的內(nèi)容,文件列表將相應(yīng)顯示。示例輸出顯示在以下程序中-
{ok,["helloworld.erl",".cg_conf","Newfile.txt","helloworld.beam"]}