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


Elixir File.touch用法及代码示例


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

用法:

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

更新给定文件的修改时间 (mtime) 和访问时间 (atime)。

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

在Unix-like 系统中,更改修改时间可能需要您是root 或文件的所有者。拥有写访问权限可能还不够。在这些情况下,第一次接触文件(以创建它)会成功,但接触现有文件会失败并使用 {:error, :eperm}

例子

File.touch("/tmp/a.txt", {{2018, 1, 30}, {13, 59, 59}})
#=> :ok
File.touch("/fakedir/b.txt", {{2018, 1, 30}, {13, 59, 59}})
{:error, :enoent}

File.touch("/tmp/a.txt", 1544519753)
#=> :ok

相关用法


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