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


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