當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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))。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。