当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


erlang list_dir用法及代码示例


Erlang list_dir函数/方法的用法及代码示例。


此方法用于列出特定目录的内容。

用法


list_dir(directory)

参数

  • directory−需要列出其内容的目录。

返回值

包含目录中文件名的项目列表。

例如


-module(helloworld). 
-export([start/0]). 

start() -> 
   io:fwrite("~p~n",[file:list_dir(".")]).

输出

根据当前工作目录的内容,文件列表将相应显示。示例输出显示在以下程序中-


{ok,["helloworld.erl",".cg_conf","Newfile.txt","helloworld.beam"]}

相关用法


注:本文由纯净天空筛选整理自 erlang list_dir。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。