博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【Erlang新手成长日记】文件读写
阅读量:6121 次
发布时间:2019-06-21

本文共 886 字,大约阅读时间需要 2 分钟。

参考文档:

  《Programming Erlang》,第13章:Programming with Files

  官方文档, 、和。

示例:

%% 文件读写示例-module(file_example).-export([write/2, read/1]).%% --------------------%% 写入文件%% write(Content, FileName) -> {ok, Content}%% Content = string()%% FileName = string()%% --------------------write(Content, FileName) when is_list(Content); is_list(FileName) ->    FileAbsolutePath = lists:append([get_local_path(), "/", FileName]),    {ok, IoDevice} = file:open(FileAbsolutePath, [append]),    io:format(IoDevice, "~s", [Content]),    file:close(IoDevice),    {ok, Content}.%% --------------------%% 读取文件%% read(FileName) -> binary()%% FileName = string()%% --------------------read(FileName) when is_list(FileName) ->    {ok, Content} = file:read_file(FileName),    Content.get_local_path() ->    filename:dirname(code:which(?MODULE)).

转载于:https://www.cnblogs.com/dyingbleed/archive/2012/08/30/2662926.html

你可能感兴趣的文章
Mindjet MindManager 2019使用教程:
查看>>
游戏设计的基本构成要素有哪些?
查看>>
详解 CSS 绝对定位
查看>>
AOP
查看>>
我的友情链接
查看>>
NGUI Label Color Code
查看>>
.NET Core微服务之基于Polly+AspectCore实现熔断与降级机制
查看>>
vue组件开发练习--焦点图切换
查看>>
浅谈OSI七层模型
查看>>
Webpack 2 中一些常见的优化措施
查看>>
移动端响应式
查看>>
python实现牛顿法求解求解最小值(包括拟牛顿法)【最优化课程笔记】
查看>>
js中var、let、const的区别
查看>>
腾讯云加入LoRa联盟成为发起成员,加速推动物联网到智联网的进化
查看>>
从Python2到Python3:超百万行代码迁移实践
查看>>
Windows Server已可安装Docker,Azure开始支持Mesosphere
查看>>
简洁优雅地实现夜间模式
查看>>
react学习总结
查看>>
微软正式发布PowerShell Core 6.0
查看>>
Amazon发布新的会话管理器
查看>>