Erlang 奇怪的函数行为

发布于 2024-10-13 13:06:10 字数 409 浏览 1 评论 0原文

我需要 erlang 中的函数,它将计算某个目录中的文件数。我写这个函数:

files_count(dir) ->
    case file:list_dir(dir) of  
         {ok, FileNames} ->
            length(FileNames);
        {error, Reason} ->
            Reason
    end.

当我尝试测试它时。我在 erlang shell 中运行,例如:

1>模块:files_count(/home/)。

我看到异常:**异常错误:没有函数子句匹配模块:files_count(“/ home /”)

出了什么问题?

谢谢。

I need in function in erlang which will be count files in something directory. I write this function:

files_count(dir) ->
    case file:list_dir(dir) of  
         {ok, FileNames} ->
            length(FileNames);
        {error, Reason} ->
            Reason
    end.

When i try to test it. I run in erlang shell for example:

1> module:files_count(/home/).

I see exceptrion: ** exception error: no function clause matching module:files_count("/home/")

What's wrong?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鯉魚旗 2024-10-20 13:06:10
-module(countfiles).
-export([files_count/1]).

files_count(Dir) ->
    case file:list_dir(Dir) of  
         {ok, FileNames} ->
            length(FileNames);
        {error, Reason} ->
            Reason
    end.
-module(countfiles).
-export([files_count/1]).

files_count(Dir) ->
    case file:list_dir(Dir) of  
         {ok, FileNames} ->
            length(FileNames);
        {error, Reason} ->
            Reason
    end.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文