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


Elixir File.touch!用法及代码示例


Elixir语言中 File.touch! 相关用法介绍如下。

用法:

touch!(path, time \\ System.os_time(:second))
@spec touch!(Path.t(), erlang_time() | posix_time()) :: :ok

touch/2 相同,但如果失败则引发 File.Error 异常。否则返回:ok

如果文件不存在,则创建该文件。需要 UTC 格式的日期时间(由 :erlang.universaltime() 返回)或表示 POSIX 时间戳的整数(由 System.os_time(:second) 返回)。

例子

File.touch!("/tmp/a.txt", {{2018, 1, 30}, {13, 59, 59}})
#=> :ok
File.touch!("/fakedir/b.txt", {{2018, 1, 30}, {13, 59, 59}})
** (File.Error) could not touch "/fakedir/b.txt": no such file or directory

File.touch!("/tmp/a.txt", 1544519753)

相关用法


注:本文由纯净天空筛选整理自elixir-lang.org大神的英文原创作品 File.touch!(path, time \\ System.os_time(:second))。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。